pub struct DictionaryValue {
pub attribute_name: String,
pub name: String,
pub value: u64,
}Expand description
A mapping between a string name and a numeric value for an attribute.
Fields§
§attribute_name: StringThe name of the attribute this value belongs to.
name: StringThe name of the specific value (e.g., “Access-Request”).
value: u64The numeric representation of the value.
Trait Implementations§
Source§impl Clone for DictionaryValue
impl Clone for DictionaryValue
Source§fn clone(&self) -> DictionaryValue
fn clone(&self) -> DictionaryValue
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 DictionaryValue
impl Debug for DictionaryValue
Source§impl PartialEq for DictionaryValue
impl PartialEq for DictionaryValue
impl Eq for DictionaryValue
impl StructuralPartialEq for DictionaryValue
Auto Trait Implementations§
impl Freeze for DictionaryValue
impl RefUnwindSafe for DictionaryValue
impl Send for DictionaryValue
impl Sync for DictionaryValue
impl Unpin for DictionaryValue
impl UnwindSafe for DictionaryValue
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