pub struct BlockQuote {
pub inline: bool,
pub props: Option<BlockQuoteProps>,
pub slots: BlockQuoteSlots,
}
Fields§
§inline: bool
§props: Option<BlockQuoteProps>
§slots: BlockQuoteSlots
Trait Implementations§
Source§impl Clone for BlockQuote
impl Clone for BlockQuote
Source§fn clone(&self) -> BlockQuote
fn clone(&self) -> BlockQuote
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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
Source§impl<'de> Deserialize<'de> for BlockQuote
impl<'de> Deserialize<'de> for BlockQuote
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<BlockQuote> for BlockComponent
impl From<BlockQuote> for BlockComponent
Source§fn from(value: BlockQuote) -> Self
fn from(value: BlockQuote) -> Self
Converts to this type from the input type.
Source§impl From<BlockQuote> for Component
impl From<BlockQuote> for Component
Source§fn from(value: BlockQuote) -> Self
fn from(value: BlockQuote) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BlockQuote
impl PartialEq for BlockQuote
Source§impl Serialize for BlockQuote
impl Serialize for BlockQuote
impl Eq for BlockQuote
impl StructuralPartialEq for BlockQuote
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