[][src]Struct posish::fs::SeekLoc

pub struct SeekLoc(_);

A location for use with Dir::seek.

Implementations

impl SeekLoc[src]

pub fn to_raw(&self) -> u64[src]

Return the location encoded as a u64. Note that this value is meant to be opaque, and applications shouldn't do anything with it except call SeekLoc::from_raw.

pub unsafe fn from_raw(loc: u64) -> Result<Self>[src]

Construct a new SeekLoc from a value returned by SeekLoc::to_raw.

Safety

The passed-in loc value must be a value returned from SeekLoc::to_raw.

Trait Implementations

impl Clone for SeekLoc[src]

impl Copy for SeekLoc[src]

impl Debug for SeekLoc[src]

impl Eq for SeekLoc[src]

impl Hash for SeekLoc[src]

impl PartialEq<SeekLoc> for SeekLoc[src]

impl StructuralEq for SeekLoc[src]

impl StructuralPartialEq for SeekLoc[src]

Auto Trait Implementations

impl RefUnwindSafe for SeekLoc

impl Send for SeekLoc

impl Sync for SeekLoc

impl Unpin for SeekLoc

impl UnwindSafe for SeekLoc

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.