pub struct SignerAttributes {
pub attrs: HashMap<String, HashSet<String>>,
}Expand description
A signer’s attribute map. Keys are attribute names (e.g., “region”, “role:director”, “expertise:metrology”). Values are sets of strings.
Fields§
§attrs: HashMap<String, HashSet<String>>Implementations§
Trait Implementations§
Source§impl Clone for SignerAttributes
impl Clone for SignerAttributes
Source§fn clone(&self) -> SignerAttributes
fn clone(&self) -> SignerAttributes
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SignerAttributes
impl Debug for SignerAttributes
Source§impl Default for SignerAttributes
impl Default for SignerAttributes
Source§fn default() -> SignerAttributes
fn default() -> SignerAttributes
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SignerAttributes
impl RefUnwindSafe for SignerAttributes
impl Send for SignerAttributes
impl Sync for SignerAttributes
impl Unpin for SignerAttributes
impl UnsafeUnpin for SignerAttributes
impl UnwindSafe for SignerAttributes
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