[−][src]Struct picollar::config::ParsedConfig
Methods
impl ParsedConfig
[src]
pub fn lookup<'l, K: Key + ?Sized, T: Deserialize<'l>>(
&self,
k: &K,
def: T
) -> Result<T, Error>
[src]
&self,
k: &K,
def: T
) -> Result<T, Error>
pub fn need<'l, K: Key + ?Sized, T: Deserialize<'l>>(
&self,
k: &K
) -> Result<T, Error>
[src]
&self,
k: &K
) -> Result<T, Error>
pub fn command_general<K: Key + ?Sized, S: Debug + AsRef<str>, M: Debug + AsRef<str>>(
&self,
k: &K,
def: &[S],
more_args: &[M]
) -> Result<Command, Error>
[src]
&self,
k: &K,
def: &[S],
more_args: &[M]
) -> Result<Command, Error>
pub fn command_simple<K: Key + ?Sized, M: Debug + AsRef<str>>(
&self,
k: &K,
def: &str,
more: &[M]
) -> Result<Command, Error>
[src]
&self,
k: &K,
def: &str,
more: &[M]
) -> Result<Command, Error>
pub fn collar_key(&self) -> Result<CollarKey, Error>
[src]
Methods from Deref<Target = Value>
pub fn get<I>(&self, index: I) -> Option<&Value> where
I: Index,
[src]
I: Index,
Index into a TOML array or map. A string index can be used to access a value in a map, and a usize index can be used to access an element of an array.
Returns None
if the type of self
does not match the type of the
index, for example if the index is a string and self
is an array or a
number. Also returns None
if the given key does not exist in the map
or the given index is not within the bounds of the array.
pub fn as_integer(&self) -> Option<i64>
[src]
Extracts the integer value if it is an integer.
pub fn is_integer(&self) -> bool
[src]
Tests whether this value is an integer.
pub fn as_float(&self) -> Option<f64>
[src]
Extracts the float value if it is a float.
pub fn is_float(&self) -> bool
[src]
Tests whether this value is a float.
pub fn as_bool(&self) -> Option<bool>
[src]
Extracts the boolean value if it is a boolean.
pub fn is_bool(&self) -> bool
[src]
Tests whether this value is a boolean.
pub fn as_str(&self) -> Option<&str>
[src]
Extracts the string of this value if it is a string.
pub fn is_str(&self) -> bool
[src]
Tests if this value is a string.
pub fn as_datetime(&self) -> Option<&Datetime>
[src]
Extracts the datetime value if it is a datetime.
Note that a parsed TOML value will only contain ISO 8601 dates. An example date is:
1979-05-27T07:32:00Z
pub fn is_datetime(&self) -> bool
[src]
Tests whether this value is a datetime.
pub fn as_array(&self) -> Option<&Vec<Value>>
[src]
Extracts the array value if it is an array.
pub fn is_array(&self) -> bool
[src]
Tests whether this value is an array.
pub fn as_table(&self) -> Option<&Map<String, Value>>
[src]
Extracts the table value if it is a table.
pub fn is_table(&self) -> bool
[src]
Tests whether this value is a table.
pub fn same_type(&self, other: &Value) -> bool
[src]
Tests whether this and another value have the same type.
pub fn type_str(&self) -> &'static str
[src]
Returns a human-readable representation of the type of this value.
Trait Implementations
impl Deref for ParsedConfig
[src]
Auto Trait Implementations
impl RefUnwindSafe for ParsedConfig
impl Send for ParsedConfig
impl Sync for ParsedConfig
impl Unpin for ParsedConfig
impl UnwindSafe for ParsedConfig
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T, I> AsResult<T, I> for T where
I: Input,
[src]
I: Input,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
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> IntoCollection<T> for T
[src]
fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
[src]
A: Array<Item = T>,
fn mapped<U, F, A>(self, f: F) -> SmallVec<A> where
A: Array<Item = U>,
F: FnMut(T) -> U,
[src]
A: Array<Item = U>,
F: FnMut(T) -> U,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
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.
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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Typeable for T where
T: Any,
[src]
T: Any,