pub struct BlockQuote {
pub children: Vec<Tag>,
pub classes: HashSet<TagClass>,
pub ids: Vec<String>,
pub attributes: HashMap<String, String>,
}
Fields§
§children: Vec<Tag>
§classes: HashSet<TagClass>
§ids: Vec<String>
§attributes: HashMap<String, String>
Implementations§
Source§impl BlockQuote
impl BlockQuote
Trait Implementations§
Source§impl Clone for BlockQuote
impl Clone for BlockQuote
Source§fn clone(&self) -> BlockQuote
fn clone(&self) -> BlockQuote
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 BlockQuote
impl Debug for BlockQuote
Source§impl Default for BlockQuote
impl Default for BlockQuote
Source§fn default() -> BlockQuote
fn default() -> BlockQuote
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BlockQuote
impl RefUnwindSafe for BlockQuote
impl Send for BlockQuote
impl Sync for BlockQuote
impl Unpin for BlockQuote
impl UnwindSafe for BlockQuote
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more