pub enum ArrayInfo {
Single,
DynamicLess(Size),
DynamicLeq(Size),
Static(Size),
}
Expand description
Uavcan array information
Variants§
Single
Not 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 Eq for ArrayInfo
impl StructuralPartialEq for ArrayInfo
Auto Trait Implementations§
impl Freeze for ArrayInfo
impl RefUnwindSafe for ArrayInfo
impl Send for ArrayInfo
impl Sync for ArrayInfo
impl Unpin for ArrayInfo
impl UnwindSafe for ArrayInfo
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