pub struct BitsetType {
pub name: String,
pub bit_fields: Vec<BitField>,
}Expand description
<bitset>-Definition (Spec §7.3.3.4.9).
Fields§
§name: StringBitset-Name.
bit_fields: Vec<BitField><bitfield>-Eintraege.
Trait Implementations§
Source§impl Clone for BitsetType
impl Clone for BitsetType
Source§fn clone(&self) -> BitsetType
fn clone(&self) -> BitsetType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BitsetType
impl Debug for BitsetType
Source§impl Default for BitsetType
impl Default for BitsetType
Source§fn default() -> BitsetType
fn default() -> BitsetType
Returns the “default value” for a type. Read more
Source§impl PartialEq for BitsetType
impl PartialEq for BitsetType
Source§fn eq(&self, other: &BitsetType) -> bool
fn eq(&self, other: &BitsetType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BitsetType
impl StructuralPartialEq for BitsetType
Auto Trait Implementations§
impl Freeze for BitsetType
impl RefUnwindSafe for BitsetType
impl Send for BitsetType
impl Sync for BitsetType
impl Unpin for BitsetType
impl UnsafeUnpin for BitsetType
impl UnwindSafe for BitsetType
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