pub enum SeekPos {
Start(u64),
StartSector(u128),
AbsPos(VolLocation),
Curr(i64),
End(i64),
EndSector(i128),
}Variants§
Trait Implementations§
impl Copy for SeekPos
impl StructuralPartialEq for SeekPos
Auto Trait Implementations§
impl Freeze for SeekPos
impl RefUnwindSafe for SeekPos
impl Send for SeekPos
impl Sync for SeekPos
impl Unpin for SeekPos
impl UnwindSafe for SeekPos
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