pub struct RichTextNode {
pub orig_text: String,
pub text: String,
pub type_field: String,
}Fields§
§orig_text: String§text: String§type_field: StringTrait Implementations§
Source§impl Clone for RichTextNode
impl Clone for RichTextNode
Source§fn clone(&self) -> RichTextNode
fn clone(&self) -> RichTextNode
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 RichTextNode
impl Debug for RichTextNode
Source§impl<'de> Deserialize<'de> for RichTextNode
impl<'de> Deserialize<'de> for RichTextNode
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
Auto Trait Implementations§
impl Freeze for RichTextNode
impl RefUnwindSafe for RichTextNode
impl Send for RichTextNode
impl Sync for RichTextNode
impl Unpin for RichTextNode
impl UnsafeUnpin for RichTextNode
impl UnwindSafe for RichTextNode
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