pub struct FileRange {
pub start: u64,
pub end_inclusive: u64,
}Expand description
A byte range within a file.
Fields§
§start: u64§end_inclusive: u64Implementations§
Trait Implementations§
impl Copy for FileRange
impl Eq for FileRange
impl StructuralPartialEq for FileRange
Auto Trait Implementations§
impl Freeze for FileRange
impl RefUnwindSafe for FileRange
impl Send for FileRange
impl Sync for FileRange
impl Unpin for FileRange
impl UnsafeUnpin for FileRange
impl UnwindSafe for FileRange
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more