[][src]Struct rscache::arc::Archive

pub struct Archive {
    pub id: u32,
    pub index_id: u8,
    pub sector: u32,
    pub length: usize,
}

Represents an archive contained in an index.

Fields

id: u32index_id: u8sector: u32length: usize

Trait Implementations

impl Clone for Archive[src]

impl Copy for Archive[src]

impl Debug for Archive[src]

impl Default for Archive[src]

impl Eq for Archive[src]

impl Hash for Archive[src]

impl Ord for Archive[src]

impl PartialEq<Archive> for Archive[src]

impl PartialOrd<Archive> for Archive[src]

impl StructuralEq for Archive[src]

impl StructuralPartialEq for Archive[src]

Auto Trait Implementations

impl RefUnwindSafe for Archive

impl Send for Archive

impl Sync for Archive

impl Unpin for Archive

impl UnwindSafe for Archive

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.