[][src]Struct clevel::models::Model

pub struct Model {
    pub crisps: Vec<u32>,
    pub a: u32,
    pub b: u32,
    pub t: u32,
    pub p: u32,
}

Fields

crisps: Vec<u32>a: u32b: u32t: u32p: u32

Methods

impl Model[src]

pub fn parse(raw_data: Vec<String>) -> Vec<Model>[src]

pub fn parse_ron(path: String) -> Result<Vec<Model>>[src]

Trait Implementations

impl Debug for Model[src]

impl<'de> Deserialize<'de> for Model[src]

impl Serialize for Model[src]

Auto Trait Implementations

impl RefUnwindSafe for Model

impl Send for Model

impl Sync for Model

impl Unpin for Model

impl UnwindSafe for Model

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.