diff options
| author | KyleMiles <krm504@nyu.edu> | 2021-01-21 18:35:20 +0000 |
|---|---|---|
| committer | KyleMiles <krm504@nyu.edu> | 2021-01-21 19:07:07 +0000 |
| commit | 2fcacc55d5466a7d17bdc0b3ce988772aa6d0653 (patch) | |
| tree | 9d0f2ba19117843575936f2b93e0b6a578a84dc8 /rust/src/segment.rs | |
| parent | a0da07c5c2860a5bd69921d38e438bbc1d43912f (diff) | |
cargo fmt and all my changes
Diffstat (limited to 'rust/src/segment.rs')
| -rw-r--r-- | rust/src/segment.rs | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/rust/src/segment.rs b/rust/src/segment.rs index 0985d0d3..b583e0e0 100644 --- a/rust/src/segment.rs +++ b/rust/src/segment.rs @@ -1,5 +1,18 @@ -use binaryninjacore_sys::*; +// Copyright 2021 Vector 35 Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +use binaryninjacore_sys::*; use std::ops::Range; @@ -67,7 +80,9 @@ impl SegmentBuilder { pub(crate) fn create(self, view: &BinaryView) { let ea_start = self.ea.start; let ea_len = self.ea.end.wrapping_sub(ea_start); - let (b_start, b_len) = self.parent_backing.map_or((0, 0), |s| (s.start, s.end.wrapping_sub(s.start))); + let (b_start, b_len) = self + .parent_backing + .map_or((0, 0), |s| (s.start, s.end.wrapping_sub(s.start))); unsafe { if self.is_auto { @@ -101,7 +116,7 @@ impl Segment { pub fn address_range(&self) -> Range<u64> { let start = unsafe { BNSegmentGetStart(self.handle) }; let end = unsafe { BNSegmentGetEnd(self.handle) }; - start .. end + start..end } pub fn parent_backing(&self) -> Option<Range<u64>> { @@ -109,7 +124,7 @@ impl Segment { let end = unsafe { BNSegmentGetDataEnd(self.handle) }; if start != end { - Some(start .. end) + Some(start..end) } else { None } |
