pub struct AttributeChain {
pub key: String,
pub values: Vec<AttributeValue>,
}
Expand description
A chain of attribute values, the first element representing the most recent value
Fields§
§key: String
§values: Vec<AttributeValue>
Trait Implementations§
Source§impl Clone for AttributeChain
impl Clone for AttributeChain
Source§fn clone(&self) -> AttributeChain
fn clone(&self) -> AttributeChain
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 moreAuto Trait Implementations§
impl Freeze for AttributeChain
impl RefUnwindSafe for AttributeChain
impl Send for AttributeChain
impl Sync for AttributeChain
impl Unpin for AttributeChain
impl UnwindSafe for AttributeChain
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