pub enum InlineKind {
Plain,
Bold,
Italic,
Image,
Icon,
Br,
}Variants§
Plain
Plain text.
Bold
Bold text.
Italic
Italic text.
Image
Inline image.
Icon
Inline icon image.
Br
Line break.
Trait Implementations§
Source§impl Clone for InlineKind
impl Clone for InlineKind
Source§fn clone(&self) -> InlineKind
fn clone(&self) -> InlineKind
Returns a duplicate 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 InlineKind
impl Debug for InlineKind
Source§impl<'de> Deserialize<'de> for InlineKind
impl<'de> Deserialize<'de> for InlineKind
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 Serialize for InlineKind
impl Serialize for InlineKind
impl Copy for InlineKind
Auto Trait Implementations§
impl Freeze for InlineKind
impl RefUnwindSafe for InlineKind
impl Send for InlineKind
impl Sync for InlineKind
impl Unpin for InlineKind
impl UnsafeUnpin for InlineKind
impl UnwindSafe for InlineKind
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