Enum dsdl_parser::ArrayInfo
[−]
[src]
pub enum ArrayInfo {
Single,
DynamicLess(Size),
DynamicLeq(Size),
Static(Size),
}Uavcan array information
Variants
SingleNot an array (i.e. uint2)
DynamicLess(Size)Dynamic array on the less than form (i.e. uint2[<5])
DynamicLeq(Size)Dynamic array on the less or equal form (i.e. uint2[<=5])
Static(Size)Static array on the less or equal form (i.e. uint2[5])
Trait Implementations
impl Display for ArrayInfo[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more
impl Clone for ArrayInfo[src]
fn clone(&self) -> ArrayInfo[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for ArrayInfo[src]
impl PartialEq for ArrayInfo[src]
fn eq(&self, __arg_0: &ArrayInfo) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ArrayInfo) -> bool[src]
This method tests for !=.