[][src]Struct binread::io::cursor::Cursor

pub struct Cursor<T: AsRef<[u8]>> { /* fields omitted */ }

Implementations

impl<T: AsRef<[u8]>> Cursor<T>[src]

pub fn get_mut(&mut self) -> &mut T[src]

pub fn get_ref(&self) -> &T[src]

pub fn into_inner(self) -> T[src]

pub fn new(inner: T) -> Self[src]

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

pub fn set_position(&mut self, pos: u64)[src]

Trait Implementations

impl<T: Clone + AsRef<[u8]>> Clone for Cursor<T>[src]

impl<T: Debug + AsRef<[u8]>> Debug for Cursor<T>[src]

impl<T: Default + AsRef<[u8]>> Default for Cursor<T>[src]

impl<T: AsRef<[u8]>> Read for Cursor<T>[src]

impl<T: AsRef<[u8]>> Seek for Cursor<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Cursor<T> where
    T: RefUnwindSafe

impl<T> Send for Cursor<T> where
    T: Send

impl<T> Sync for Cursor<T> where
    T: Sync

impl<T> Unpin for Cursor<T> where
    T: Unpin

impl<T> UnwindSafe for Cursor<T> where
    T: UnwindSafe

Blanket Implementations

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

impl<R> BinReaderExt for R where
    R: Read + Seek
[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<R> Read for R where
    R: Read
[src]

impl<S> Seek for S where
    S: Seek
[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.