pub struct StringDecl {
pub name: String,
pub meta: NodeMeta,
pub addressing: Addressing,
pub access: AccessMode,
pub predicates: PredicateRefs,
}Expand description
Declaration of a StringReg node for string-typed register access.
Fields§
§name: StringFeature name exposed to clients.
meta: NodeMetaShared metadata.
addressing: AddressingAddressing metadata for the register block.
access: AccessModeAccess privileges.
predicates: PredicateRefsPredicate refs gating implementation / availability / lock state.
Trait Implementations§
Source§impl Clone for StringDecl
impl Clone for StringDecl
Source§fn clone(&self) -> StringDecl
fn clone(&self) -> StringDecl
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 StringDecl
impl Debug for StringDecl
Source§impl<'de> Deserialize<'de> for StringDecl
impl<'de> Deserialize<'de> for StringDecl
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
Auto Trait Implementations§
impl Freeze for StringDecl
impl RefUnwindSafe for StringDecl
impl Send for StringDecl
impl Sync for StringDecl
impl Unpin for StringDecl
impl UnwindSafe for StringDecl
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