pub struct RegisterGroup {
pub name: String,
pub caption: String,
pub registers: Vec<Register>,
}Expand description
A group of registers.
Fields§
§name: StringThe name of the group.
caption: String§registers: Vec<Register>The registers that make up the group.
Trait Implementations§
Source§impl Clone for RegisterGroup
impl Clone for RegisterGroup
Source§fn clone(&self) -> RegisterGroup
fn clone(&self) -> RegisterGroup
Returns a duplicate of the value. Read more
1.0.0 · 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 RegisterGroup
impl Debug for RegisterGroup
Source§impl Hash for RegisterGroup
impl Hash for RegisterGroup
Source§impl PartialEq for RegisterGroup
impl PartialEq for RegisterGroup
Source§impl PartialOrd for RegisterGroup
impl PartialOrd for RegisterGroup
impl Eq for RegisterGroup
impl StructuralPartialEq for RegisterGroup
Auto Trait Implementations§
impl Freeze for RegisterGroup
impl RefUnwindSafe for RegisterGroup
impl Send for RegisterGroup
impl Sync for RegisterGroup
impl Unpin for RegisterGroup
impl UnwindSafe for RegisterGroup
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