[][src]Trait io::Seek

pub trait Seek {
    type Err;
    fn seek(&mut self, _: SeekFrom) -> Result<u64, Self::Err>;
}

Associated Types

type Err

Loading content...

Required methods

fn seek(&mut self, _: SeekFrom) -> Result<u64, Self::Err>

Loading content...

Implementors

impl<'a, S: ?Sized + DerefMut> Seek for S where
    S::Target: Seek
[src]

type Err = <S::Target as Seek>::Err

Loading content...