Struct io_interner::IOEntry[][src]

pub struct IOEntry<'a, T> { /* fields omitted */ }

A struct generated by IOInterner::get_or_intern.

Implementations

impl<'a, T> IOEntry<'a, T>[src]

pub fn get_object(&self) -> IOObj<'a, T>

Notable traits for IOObj<'a, T>

impl<'a, T: Read + Seek> Read for IOObj<'a, T>
[src]

Creates a new IOObj that can be Read and Seek.

Trait Implementations

impl<'a, T: Clone> Clone for IOEntry<'a, T>[src]

impl<'a, T: Copy> Copy for IOEntry<'a, T>[src]

impl<'a, T> Eq for IOEntry<'a, T>[src]

impl<'a, T> Hash for IOEntry<'a, T>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Hash the start position of the entry and the length.

impl<'a, T> PartialEq<IOEntry<'a, T>> for IOEntry<'a, T>[src]

fn eq(&self, other: &Self) -> bool[src]

Compares the start position of self in the interner and it's length to other;returning false if either are different,true otherwise.

Panics

It panics if self and other were created from different IOInterners.

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for IOEntry<'a, T>[src]

impl<'a, T> Send for IOEntry<'a, T> where
    T: Send
[src]

impl<'a, T> Sync for IOEntry<'a, T> where
    T: Send
[src]

impl<'a, T> Unpin for IOEntry<'a, T>[src]

impl<'a, T> UnwindSafe for IOEntry<'a, T>[src]

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.