[][src]Struct gluon_parser::infix::OpTable

pub struct OpTable<Id> {
    pub operators: FnvMap<Id, OpMeta>,
}

A table of operator metadata

Fields

operators: FnvMap<Id, OpMeta>

Implementations

impl<Id> OpTable<Id>[src]

pub fn new<I>(ops: I) -> OpTable<Id> where
    I: IntoIterator<Item = (Id, OpMeta)>,
    Id: Eq + Hash
[src]

Auto Trait Implementations

impl<Id> RefUnwindSafe for OpTable<Id> where
    Id: RefUnwindSafe

impl<Id> Send for OpTable<Id> where
    Id: Send

impl<Id> Sync for OpTable<Id> where
    Id: Sync

impl<Id> Unpin for OpTable<Id> where
    Id: Unpin

impl<Id> UnwindSafe for OpTable<Id> where
    Id: UnwindSafe

Blanket Implementations

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

impl<Id> AsId<Id> for Id where
    Id: ?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.