pub struct MavEnum {
pub name: String,
pub description: Option<String>,
pub entries: Vec<MavEnumEntry>,
pub bitfield: Option<String>,
}
Fields§
§name: String
§description: Option<String>
§entries: Vec<MavEnumEntry>
§bitfield: Option<String>
If contains Some, the string represents the type witdh for bitflags
Trait Implementations§
impl Eq for MavEnum
impl StructuralPartialEq for MavEnum
Auto Trait Implementations§
impl Freeze for MavEnum
impl RefUnwindSafe for MavEnum
impl Send for MavEnum
impl Sync for MavEnum
impl Unpin for MavEnum
impl UnwindSafe for MavEnum
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