//! No-std compatible shared I/O types.
/// Enumeration of possible methods to seek within an I/O object.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]pubenumSeekFrom{/// Sets the offset to the provided number of bytes.
Start(u64),/// Sets the offset to the size of this object plus the specified number of bytes.
End(i64),/// Sets the offset to the current position plus the specified number of bytes.
Current(i64),}