pub trait IntoSeekFrom: Copy {
// Required method
fn into_seek_from(self) -> SeekFrom;
}
Expand description
Used to allow any convert any type castable to i64 into a SeekFrom::Current
Required Methods§
fn into_seek_from(self) -> SeekFrom
Object Safety§
This trait is not object safe.