pub struct AttributeBlock {
pub identifier: Option<String>,
pub classes: Vec<String>,
pub key_values: Vec<(String, String)>,
}Fields§
§identifier: Option<String>§classes: Vec<String>§key_values: Vec<(String, String)>Trait Implementations§
Source§impl Debug for AttributeBlock
impl Debug for AttributeBlock
Source§impl PartialEq for AttributeBlock
impl PartialEq for AttributeBlock
Source§fn eq(&self, other: &AttributeBlock) -> bool
fn eq(&self, other: &AttributeBlock) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttributeBlock
Auto Trait Implementations§
impl Freeze for AttributeBlock
impl RefUnwindSafe for AttributeBlock
impl Send for AttributeBlock
impl Sync for AttributeBlock
impl Unpin for AttributeBlock
impl UnsafeUnpin for AttributeBlock
impl UnwindSafe for AttributeBlock
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