[][src]Struct dmxparser::dmx::File

pub struct File<B, S> {
    pub header: FileHeader<S>,
    pub prefix: Vec<(S, AttributeValue<B, S>)>,
    pub strings: Vec<S>,
    pub headers: Vec<Header>,
    pub bodies: Vec<Body<B, S>>,
}

Fields

header: FileHeader<S>prefix: Vec<(S, AttributeValue<B, S>)>strings: Vec<S>headers: Vec<Header>bodies: Vec<Body<B, S>>

Trait Implementations

impl<B: Debug, S: Debug> Debug for File<B, S>[src]

Auto Trait Implementations

impl<B, S> RefUnwindSafe for File<B, S> where
    B: RefUnwindSafe,
    S: RefUnwindSafe

impl<B, S> Send for File<B, S> where
    B: Send,
    S: Send

impl<B, S> Sync for File<B, S> where
    B: Sync,
    S: Sync

impl<B, S> Unpin for File<B, S> where
    B: Unpin,
    S: Unpin

impl<B, S> UnwindSafe for File<B, S> where
    B: UnwindSafe,
    S: UnwindSafe

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, 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.