[][src]Struct ion::Ion

pub struct Ion { /* fields omitted */ }

Methods

impl Ion[src]

pub fn new(map: BTreeMap<String, Section>) -> Ion[src]

pub fn from_str_filtered(
    s: &str,
    accepted_sections: Vec<&str>
) -> Result<Self, IonError>
[src]

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

pub fn fetch(&self, key: &str) -> Result<&Section, IonError>[src]

pub fn remove(&mut self, key: &str) -> Option<Section>[src]

Removes a Section from the ion structure and returning it

pub fn iter(&self) -> Iter<String, Section>[src]

Trait Implementations

impl Display for Ion[src]

impl Debug for Ion[src]

impl FromStr for Ion[src]

type Err = IonError

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for Ion

impl Sync for Ion

impl Unpin for Ion

impl UnwindSafe for Ion

impl RefUnwindSafe for Ion

Blanket Implementations

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

impl<T> From<T> for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

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

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

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