pub struct MarkedStringWithLanguage {
pub language: String,
pub value: String,
}Expand description
@since 3.18.0 @deprecated use MarkupContent instead.
Fields§
§language: String§value: StringTrait Implementations§
Source§impl Clone for MarkedStringWithLanguage
impl Clone for MarkedStringWithLanguage
Source§fn clone(&self) -> MarkedStringWithLanguage
fn clone(&self) -> MarkedStringWithLanguage
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 MarkedStringWithLanguage
impl Debug for MarkedStringWithLanguage
Source§impl<'de> Deserialize<'de> for MarkedStringWithLanguage
impl<'de> Deserialize<'de> for MarkedStringWithLanguage
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 MarkedStringWithLanguage
impl PartialEq for MarkedStringWithLanguage
Source§fn eq(&self, other: &MarkedStringWithLanguage) -> bool
fn eq(&self, other: &MarkedStringWithLanguage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MarkedStringWithLanguage
impl Serialize for MarkedStringWithLanguage
impl StructuralPartialEq for MarkedStringWithLanguage
Auto Trait Implementations§
impl Freeze for MarkedStringWithLanguage
impl RefUnwindSafe for MarkedStringWithLanguage
impl Send for MarkedStringWithLanguage
impl Sync for MarkedStringWithLanguage
impl Unpin for MarkedStringWithLanguage
impl UnsafeUnpin for MarkedStringWithLanguage
impl UnwindSafe for MarkedStringWithLanguage
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