Enum html2md_rs::structs::AttributeValues
source · pub enum AttributeValues {
String(String),
Bool(bool),
Number(i32),
}Expand description
Represents the different types of attribute values that the library supports.
Variants§
String(String)
Represents a string attribute value.
Bool(bool)
Represents a boolean attribute value.
Number(i32)
Represents an integer attribute value.
Trait Implementations§
source§impl Clone for AttributeValues
impl Clone for AttributeValues
source§fn clone(&self) -> AttributeValues
fn clone(&self) -> AttributeValues
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 moresource§impl Debug for AttributeValues
impl Debug for AttributeValues
source§impl Display for AttributeValues
impl Display for AttributeValues
source§impl PartialEq for AttributeValues
impl PartialEq for AttributeValues
source§fn eq(&self, other: &AttributeValues) -> bool
fn eq(&self, other: &AttributeValues) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for AttributeValues
impl StructuralPartialEq for AttributeValues
Auto Trait Implementations§
impl Freeze for AttributeValues
impl RefUnwindSafe for AttributeValues
impl Send for AttributeValues
impl Sync for AttributeValues
impl Unpin for AttributeValues
impl UnwindSafe for AttributeValues
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