pub struct BlockquoteLineData { /* private fields */ }Expand description
A collected blockquote line used for style-preserving reflow.
The invariant is_explicit == true iff prefix.is_some() is enforced by the
constructors. Use BlockquoteLineData::explicit or BlockquoteLineData::lazy
rather than constructing the struct directly.
Implementations§
Trait Implementations§
Source§impl Clone for BlockquoteLineData
impl Clone for BlockquoteLineData
Source§fn clone(&self) -> BlockquoteLineData
fn clone(&self) -> BlockquoteLineData
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 moreAuto Trait Implementations§
impl Freeze for BlockquoteLineData
impl RefUnwindSafe for BlockquoteLineData
impl Send for BlockquoteLineData
impl Sync for BlockquoteLineData
impl Unpin for BlockquoteLineData
impl UnsafeUnpin for BlockquoteLineData
impl UnwindSafe for BlockquoteLineData
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