pub enum MarkedString {
String(String),
LanguageString {
language: String,
value: String,
},
}Expand description
This may either be a markdown string or a language snippet.
Variants§
Trait Implementations§
Source§impl Debug for MarkedString
impl Debug for MarkedString
Auto Trait Implementations§
impl Freeze for MarkedString
impl RefUnwindSafe for MarkedString
impl Send for MarkedString
impl Sync for MarkedString
impl Unpin for MarkedString
impl UnwindSafe for MarkedString
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