[][src]Struct hatter::OMap

pub struct OMap { /* fields omitted */ }

A HashMap for Hatter that preserves insertion order.

Implementations

impl OMap[src]

pub fn new() -> OMap[src]

pub fn len(&self) -> usize[src]

pub fn get<S: Into<Symbol>>(&self, key: S) -> Option<&Value>[src]

pub fn insert<S: Into<Symbol>>(&mut self, key: S, val: Value)[src]

pub fn remove<S: Into<Symbol>>(&mut self, key: S)[src]

pub fn iter(&self) -> impl Iterator<Item = (&Symbol, &Value)>[src]

Trait Implementations

impl From<OMap> for Map[src]

Auto Trait Implementations

impl !RefUnwindSafe for OMap

impl !Send for OMap

impl !Sync for OMap

impl Unpin for OMap

impl !UnwindSafe for OMap

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.