pub enum MarkupContentOrString {
MarkupContent(MarkupContent),
String(String),
}Variants§
MarkupContent(MarkupContent)
String(String)
Trait Implementations§
Source§impl Clone for MarkupContentOrString
impl Clone for MarkupContentOrString
Source§fn clone(&self) -> MarkupContentOrString
fn clone(&self) -> MarkupContentOrString
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 moreSource§impl Debug for MarkupContentOrString
impl Debug for MarkupContentOrString
Source§impl<'de> Deserialize<'de> for MarkupContentOrString
impl<'de> Deserialize<'de> for MarkupContentOrString
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 PartialEq for MarkupContentOrString
impl PartialEq for MarkupContentOrString
Source§fn eq(&self, other: &MarkupContentOrString) -> bool
fn eq(&self, other: &MarkupContentOrString) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MarkupContentOrString
impl Serialize for MarkupContentOrString
impl StructuralPartialEq for MarkupContentOrString
Auto Trait Implementations§
impl Freeze for MarkupContentOrString
impl RefUnwindSafe for MarkupContentOrString
impl Send for MarkupContentOrString
impl Sync for MarkupContentOrString
impl Unpin for MarkupContentOrString
impl UnsafeUnpin for MarkupContentOrString
impl UnwindSafe for MarkupContentOrString
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