Enum librsnek::system::primitives::Native
[−]
[src]
pub enum Native {
Str(String),
Int(Integer),
Float(Float),
Bool(Boolean),
Complex(Complex),
Count(Count),
Code(Code),
List(List),
None,
}Enum of well known primitive types similar to modules::builtins::type::Type.
Variants
Str(String)Int(Integer)Float(Float)Bool(Boolean)Complex(Complex)Count(Count)Code(Code)List(List)NoneTrait Implementations
impl Debug for Native[src]
impl Clone for Native[src]
fn clone(&self) -> Native
Returns a copy of the value.
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source.