[][src]Struct hyper_scripter::config::RawConfig

pub struct RawConfig {
    pub recent: Option<u32>,
    pub main_tag_filter: TagFilter,
    pub tag_filters: Vec<NamedTagFilter>,
    pub alias: HashMap<String, Alias>,
    pub categories: HashMap<ScriptType, ScriptTypeConfig>,
}

Fields

recent: Option<u32>main_tag_filter: TagFiltertag_filters: Vec<NamedTagFilter>alias: HashMap<String, Alias>categories: HashMap<ScriptType, ScriptTypeConfig>

Trait Implementations

impl Clone for RawConfig[src]

impl Debug for RawConfig[src]

impl Default for RawConfig[src]

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

impl Eq for RawConfig[src]

impl PartialEq<RawConfig> for RawConfig[src]

impl Serialize for RawConfig[src]

impl StructuralEq for RawConfig[src]

impl StructuralPartialEq for RawConfig[src]

Auto Trait Implementations

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: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.