[][src]Struct evtclib::raw::parser::Evtc

pub struct Evtc {
    pub header: Header,
    pub skill_count: u32,
    pub agents: Vec<Agent>,
    pub skills: Vec<Skill>,
    pub events: Vec<CbtEvent>,
}

A completely parsed (raw) EVTC file.

Note that this struct does not yet do any preprocessing of the events. It is simply a representation of the input file as a structured object.

Fields

header: Header

The file header values.

skill_count: u32

The skill count.

agents: Vec<Agent>

The actual agents.

skills: Vec<Skill>

The skills.

events: Vec<CbtEvent>

The combat events.

Trait Implementations

impl Clone for Evtc[src]

impl Debug for Evtc[src]

impl Default for Evtc[src]

impl Eq for Evtc[src]

impl From<Evtc> for PartialEvtc[src]

impl Hash for Evtc[src]

impl PartialEq<Evtc> for Evtc[src]

impl StructuralEq for Evtc[src]

impl StructuralPartialEq for Evtc[src]

Auto Trait Implementations

impl RefUnwindSafe for Evtc

impl Send for Evtc

impl Sync for Evtc

impl Unpin for Evtc

impl UnwindSafe for Evtc

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.