pub enum AttributeState {
Set,
Unset,
Value(Vec<u8>),
}Variants§
Trait Implementations§
Source§impl Clone for AttributeState
impl Clone for AttributeState
Source§fn clone(&self) -> AttributeState
fn clone(&self) -> AttributeState
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 AttributeState
impl Debug for AttributeState
impl Eq for AttributeState
Source§impl PartialEq for AttributeState
impl PartialEq for AttributeState
Source§fn eq(&self, other: &AttributeState) -> bool
fn eq(&self, other: &AttributeState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttributeState
Auto Trait Implementations§
impl Freeze for AttributeState
impl RefUnwindSafe for AttributeState
impl Send for AttributeState
impl Sync for AttributeState
impl Unpin for AttributeState
impl UnsafeUnpin for AttributeState
impl UnwindSafe for AttributeState
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