Struct ExampleConfig

Source
pub struct ExampleConfig {
    pub c_p_a_t_h: String,
    pub Section: Section,
}
Expand description

Configuration schema struct.

Basically is a struct of all sections. User will need to use Config.Section.Key to access value.

Fields§

§c_p_a_t_h: String§Section: Section

Implementations§

Source§

impl ExampleConfig

Source

pub fn verify(&self) -> Result<(), OVConfigError>

Sanity check convenience function

This function will exec the closure on each field with the input of the field’s value. Change c_p_a_t_h will change the path that cached inthe configuration object.

Source

pub fn get_config_no_verify<T: AsRef<str> + ?Sized>( path: &T, ) -> Result<Self, OVConfigError>

Get configuration without auto verification.

Will use default value if specific field is not found in the configuration file.

§Argument:
  • path: Path to the configuration. This path will be cached in the object for refresh and flush.
§Return:

Will return configuration object on success.

Source

pub fn get_config<T: AsRef<str> + ?Sized>( path: &T, ) -> Result<Self, OVConfigError>

Get configuration with auto verification.

Will use default value if specific field is not found in the configuration file.

§Argument:
  • path: Path to the configuration. This path will be cached in the object for refresh and flush.
§Return:

Will return configuration object on success.

Source

pub fn refresh(&mut self) -> Result<(), OVConfigError>

Read the configuration file and update current object.

This function will automatically do sanity check on the value.

Source

pub fn refresh_no_verify(&mut self) -> Result<(), OVConfigError>

Read the configuration file and update current object.

This function will NOT automatically do sanity check on the value.

Source

pub fn flush(&self) -> Result<(), OVConfigError>

Flush whatever in configuration object to file.

This function will automatically do sanity check on the value.

Source

pub fn flush_no_verify(&self) -> Result<(), OVConfigError>

Flush whatever in configuration object to file.

This function will automatically do sanity check on the value.

Trait Implementations§

Source§

impl Debug for ExampleConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ExampleConfig

Source§

fn default() -> ExampleConfig

Returns the “default value” for a type. Read more
Source§

impl PartialEq for ExampleConfig

Source§

fn eq(&self, other: &ExampleConfig) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for ExampleConfig

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.