Enum dsdl_parser::ArrayInfo [] [src]

pub enum ArrayInfo {
    Single,
    DynamicLess(Size),
    DynamicLeq(Size),
    Static(Size),
}

Uavcan array information

Variants

Not an array (i.e. uint2)

Dynamic array on the less than form (i.e. uint2[<5])

Dynamic array on the less or equal form (i.e. uint2[<=5])

Static array on the less or equal form (i.e. uint2[5])

Trait Implementations

impl Display for ArrayInfo
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ArrayInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ArrayInfo
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ArrayInfo
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for ArrayInfo
[src]