pub enum SeekStyle {
SeekSet,
SeekEnd,
SeekCur,
}
Variants§
SeekSet
Seek from the beginning of the stream
SeekEnd
Seek from the end of the stream
SeekCur
Seek from the current position
Trait Implementations§
Source§impl PartialOrd for SeekStyle
impl PartialOrd for SeekStyle
impl StructuralPartialEq for SeekStyle
Auto Trait Implementations§
impl Freeze for SeekStyle
impl RefUnwindSafe for SeekStyle
impl Send for SeekStyle
impl Sync for SeekStyle
impl Unpin for SeekStyle
impl UnwindSafe for SeekStyle
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