pub struct ValueNameDescRegistry {
pub value: u8,
pub name: String,
pub description: String,
pub comments: Option<String>,
pub parameters: Option<String>,
pub xrefs: Vec<Xref>,
}Expand description
Describes simple sub-registries with Value and (Name and/or Description) plus optional comment, parameters, xrefs, such as: flowEndReason (Value 136)
Fields§
§value: u8§name: String§description: String§comments: Option<String>§parameters: Option<String>§xrefs: Vec<Xref>Trait Implementations§
Source§impl Clone for ValueNameDescRegistry
impl Clone for ValueNameDescRegistry
Source§fn clone(&self) -> ValueNameDescRegistry
fn clone(&self) -> ValueNameDescRegistry
Returns a copy 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 ValueNameDescRegistry
impl Debug for ValueNameDescRegistry
Source§impl Default for ValueNameDescRegistry
impl Default for ValueNameDescRegistry
Source§fn default() -> ValueNameDescRegistry
fn default() -> ValueNameDescRegistry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ValueNameDescRegistry
impl RefUnwindSafe for ValueNameDescRegistry
impl Send for ValueNameDescRegistry
impl Sync for ValueNameDescRegistry
impl Unpin for ValueNameDescRegistry
impl UnwindSafe for ValueNameDescRegistry
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