[][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 Debug for Ion[src]

impl Display 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

Blanket Implementations

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

impl<T> From for T[src]

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

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> Any for T where
    T: 'static + ?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.