pub enum SeekFrom {
Start(u64),
End(i64),
Current(i64),
}
Expand description
列举可能在 I/O 对象中进行搜索的方法。
Seek
trait 使用它。
Variants§
Start(u64)
将偏移量设置为提供的字节数。
End(i64)
将偏移量设置为此对象的大小加上指定的字节数。
可以在 object 的末尾之外进行 seek,但在字节之前进行 seek 是错误的 0.
Current(i64)
将偏移量设置为当前位置加上指定的字节数。
可以在 object 的末尾之外进行 seek,但在字节之前进行 seek 是错误的 0.
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§
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
从拥有的值中借用。 Read more