ContainerType

Enum ContainerType 

Source
pub enum ContainerType {
    Vector(Box<RType>),
    Tuple(Vec<Box<RType>>),
    Array(Box<RType>, usize),
}
Expand description

Represents a container, like Vec, Array [T; N] and Tuple(T,R)

Contains more RTypes

Variants§

§

Vector(Box<RType>)

§

Tuple(Vec<Box<RType>>)

§

Array(Box<RType>, usize)

Trait Implementations§

Source§

impl Debug for ContainerType

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for ContainerType

Source§

fn eq(&self, other: &ContainerType) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl RTypeTrait for ContainerType

Source§

fn from_typestr<T: AsRef<str>>(typestr: T) -> Result<Self, TypeError>
where Self: Sized,

Construct the RType from a string that contains type information i.e. “ &str “ Read more
Source§

fn to_typestr(&self) -> String

Conversions into type representation Read more
Source§

fn to_typestr_no_ref(&self) -> String

get representation without references or lifetimes str
Source§

fn to_typestr_no_life(&self) -> String

get representation without lifetime &str
Source§

fn collect_lifetimes(&self, into: &mut Vec<String>)

collect lifetimes
Source§

fn is_const(&self) -> bool

get if the type can be declared as const Read more
Source§

fn value_is_valid(&self, valuestr: &str) -> bool

Value is valid - assume an input of (2,2,[2,3,4]) -> Tuple(NumType,NumType,Array|Vec) Read more
Source§

fn get_depth(&self, counter: usize) -> usize

Get nesting depth
Source§

fn get_breadth(&self, counter: usize) -> usize

Get nesting breadth
Source§

fn wrap_valuestr(&self, valuestr: &str) -> String

Source§

fn can_match_as_key(&self) -> bool

Whether the type can be used as the key in a match expression, floats can not.
Source§

impl Eq for ContainerType

Source§

impl StructuralPartialEq for ContainerType

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.