Struct figment::providers::Toml [−][src]
This is supported on crate feature
toml only.A TOML Format Data provider. See Data for details.
use figment::providers::{Format, Toml}; // Source directly from a source string... let provider = Toml::string("source-string"); // Or read from a file on disk. let provider = Toml::file("path-to-file");
See also toml::from_str for parsing details.
Trait Implementations
impl Format for Toml[src]
type Error = Error
The data format's error type.
const NAME: &'static str[src]
fn from_str<'de, T: DeserializeOwned>(s: &'de str) -> Result<T, Error>[src]
fn from_path<T: DeserializeOwned>(path: &Path) -> Result<T, Self::Error>[src]
fn file<P: AsRef<Path>>(path: P) -> Data<Self>[src]
fn string(string: &str) -> Data<Self>[src]
Auto Trait Implementations
impl RefUnwindSafe for Toml[src]
impl Send for Toml[src]
impl Sync for Toml[src]
impl Unpin for Toml[src]
impl UnwindSafe for Toml[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,