Enum embedded_io::SeekFrom
source · [−]Expand description
Enumeration of possible methods to seek within an I/O object.
Semantics are the same as std::io::SeekFrom
, check its documentation for details.
Variants
Start(u64)
Sets the offset to the provided number of bytes.
End(i64)
Sets the offset to the size of this object plus the specified number of bytes.
Current(i64)
Sets the offset to the current position plus the specified number of bytes.
Trait Implementations
impl Copy for SeekFrom
impl Eq for SeekFrom
impl StructuralEq for SeekFrom
impl StructuralPartialEq for SeekFrom
Auto Trait Implementations
impl RefUnwindSafe for SeekFrom
impl Send for SeekFrom
impl Sync for SeekFrom
impl Unpin for SeekFrom
impl UnwindSafe for SeekFrom
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more