[][src]Struct hocon::HoconLoader

pub struct HoconLoader { /* fields omitted */ }

Helper to load an HOCON file

Methods

impl HoconLoader[src]

pub fn new() -> Self[src]

New default HoconLoader

pub fn no_system(&self) -> Self[src]

Disable System environment substitutions

pub fn no_external_url(&self) -> Self[src]

Disable loading external urls

pub fn resolve<'de, T>(self) -> Result<T, ()> where
    T: Deserialize<'de>, 
[src]

Deserialize the loaded documents to the target type

pub fn hocon(self) -> Result<Hocon, ()>[src]

Load the documents as HOCON

pub fn load_str(self, s: &str) -> Result<Self, ()>[src]

Load a string containing an Hocon document. Includes are not supported when loading from a string

pub fn load_file(&self, path: &str) -> Result<Self, ()>[src]

Load the HOCON configuration file containing an Hocon document

Trait Implementations

impl Default for HoconLoader[src]

impl Clone for HoconLoader[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for HoconLoader[src]

Auto Trait Implementations

impl Send for HoconLoader

impl Sync for HoconLoader

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]