pub enum PrimFunction {
AtSignVar(String),
DebugPrint,
NatToText,
Collection(CollectionFunction),
}Variants§
Implementations§
Source§impl PrimFunction
impl PrimFunction
Trait Implementations§
Source§impl Clone for PrimFunction
impl Clone for PrimFunction
Source§fn clone(&self) -> PrimFunction
fn clone(&self) -> PrimFunction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PrimFunction
impl Debug for PrimFunction
Source§impl<'de> Deserialize<'de> for PrimFunction
impl<'de> Deserialize<'de> for PrimFunction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PrimFunction
Source§impl Hash for PrimFunction
impl Hash for PrimFunction
Source§impl PartialEq for PrimFunction
impl PartialEq for PrimFunction
Source§impl Serialize for PrimFunction
impl Serialize for PrimFunction
impl StructuralPartialEq for PrimFunction
Auto Trait Implementations§
impl Freeze for PrimFunction
impl RefUnwindSafe for PrimFunction
impl Send for PrimFunction
impl Sync for PrimFunction
impl Unpin for PrimFunction
impl UnsafeUnpin for PrimFunction
impl UnwindSafe for PrimFunction
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