pub struct Builtins<'a> {
pub builtins: &'a mut Vec<(Box<[usize]>, PrimitiveFn)>,
}Expand description
A wrapper for a Vec of builtins so that functions
can be added to it
Fields§
§builtins: &'a mut Vec<(Box<[usize]>, PrimitiveFn)>Implementations§
Source§impl<'a> Builtins<'a>
impl<'a> Builtins<'a>
pub fn new(builtins: &'a mut Vec<(Box<[usize]>, PrimitiveFn)>) -> Self
pub fn add_builtin(&mut self, conditions: Vec<usize>, prim: PrimitiveFn)
Auto Trait Implementations§
impl<'a> Freeze for Builtins<'a>
impl<'a> !RefUnwindSafe for Builtins<'a>
impl<'a> !Send for Builtins<'a>
impl<'a> !Sync for Builtins<'a>
impl<'a> Unpin for Builtins<'a>
impl<'a> !UnwindSafe for Builtins<'a>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more