pub enum AttributeParseState {
Key,
Assign,
Value,
QuotedValue(char),
}
Variants§
Trait Implementations§
Source§impl Clone for AttributeParseState
impl Clone for AttributeParseState
Source§fn clone(&self) -> AttributeParseState
fn clone(&self) -> AttributeParseState
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 AttributeParseState
impl Debug for AttributeParseState
impl Copy for AttributeParseState
Auto Trait Implementations§
impl Freeze for AttributeParseState
impl RefUnwindSafe for AttributeParseState
impl Send for AttributeParseState
impl Sync for AttributeParseState
impl Unpin for AttributeParseState
impl UnwindSafe for AttributeParseState
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