pub struct Primops<B> {
pub unary: HashMap<String, Unary<B>>,
pub binary: HashMap<String, Binary<B>>,
pub variadic: HashMap<String, Variadic<B>>,
}Fields§
§unary: HashMap<String, Unary<B>>§binary: HashMap<String, Binary<B>>§variadic: HashMap<String, Variadic<B>>Trait Implementations§
Auto Trait Implementations§
impl<B> Freeze for Primops<B>
impl<B> RefUnwindSafe for Primops<B>
impl<B> Send for Primops<B>
impl<B> Sync for Primops<B>
impl<B> Unpin for Primops<B>
impl<B> UnwindSafe for Primops<B>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more