pub struct RegAddress {
pub external_access: bool,
pub mem_map_access: bool,
pub block_access: Option<bool>,
pub memory_access: Option<bool>,
pub table_id: Option<String>,
pub power_domain: Option<String>,
pub reg_component: Option<String>,
pub reg_frame: Option<String>,
pub reg_offset: RegOffset,
pub reg_instance: Option<String>,
pub reg_access: RegAccess,
}Fields§
§external_access: bool§mem_map_access: bool§block_access: Option<bool>§memory_access: Option<bool>§table_id: Option<String>§power_domain: Option<String>§reg_component: Option<String>§reg_frame: Option<String>§reg_offset: RegOffset§reg_instance: Option<String>§reg_access: RegAccessTrait Implementations§
Source§impl Clone for RegAddress
impl Clone for RegAddress
Source§fn clone(&self) -> RegAddress
fn clone(&self) -> RegAddress
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 RegAddress
impl Debug for RegAddress
Source§impl<'de> Deserialize<'de> for RegAddress
impl<'de> Deserialize<'de> for RegAddress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RegAddress
impl PartialEq for RegAddress
impl Eq for RegAddress
impl StructuralPartialEq for RegAddress
Auto Trait Implementations§
impl Freeze for RegAddress
impl RefUnwindSafe for RegAddress
impl Send for RegAddress
impl Sync for RegAddress
impl Unpin for RegAddress
impl UnwindSafe for RegAddress
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