pub struct CompositeText {
pub name: String,
pub collected_text: Vec<TextOrCharacterRef>,
}Fields§
§name: String§collected_text: Vec<TextOrCharacterRef>Trait Implementations§
Source§impl Clone for CompositeText
impl Clone for CompositeText
Source§fn clone(&self) -> CompositeText
fn clone(&self) -> CompositeText
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 CompositeText
impl Debug for CompositeText
Source§impl PartialEq for CompositeText
impl PartialEq for CompositeText
Source§fn eq(&self, other: &CompositeText) -> bool
fn eq(&self, other: &CompositeText) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CompositeText
Auto Trait Implementations§
impl Freeze for CompositeText
impl RefUnwindSafe for CompositeText
impl Send for CompositeText
impl Sync for CompositeText
impl Unpin for CompositeText
impl UnsafeUnpin for CompositeText
impl UnwindSafe for CompositeText
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