[][src]Struct snekdown::references::configuration::Configuration

pub struct Configuration { /* fields omitted */ }

Implementations

impl Configuration[src]

pub fn new() -> Self[src]

pub fn default() -> Self[src]

pub fn assign_config(&mut self, config: &RootConfig)[src]

pub fn get_entry(&self, key: &str) -> Option<ConfigEntry>[src]

returns the value of a config entry

pub fn get_ref_entry(&self, key: &str) -> Option<ConfigRefEntry>[src]

returns a config entry that is a reference to a value

pub fn set(&mut self, key: &str, value: Value)[src]

Sets a config parameter

pub fn set_from_meta(&mut self, key: &str, value: MetadataValue)[src]

Sets a config value based on a metadata value

Trait Implementations

impl Clone for Configuration[src]

impl Debug for Configuration[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> 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.