pub struct StringAnnotation {
pub tag: String,
pub annotation: String,
}Expand description
Mirrors Jetpack Compose’s AnnotatedString.Range<String> — a tag+value
annotation covering a byte range.
JC ref: androidx.compose.ui.text.AnnotatedString.Range
Fields§
§tag: String§annotation: StringTrait Implementations§
Source§impl Clone for StringAnnotation
impl Clone for StringAnnotation
Source§fn clone(&self) -> StringAnnotation
fn clone(&self) -> StringAnnotation
Returns a duplicate of the value. Read more
1.0.0 · 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 StringAnnotation
impl Debug for StringAnnotation
Source§impl PartialEq for StringAnnotation
impl PartialEq for StringAnnotation
impl StructuralPartialEq for StringAnnotation
Auto Trait Implementations§
impl Freeze for StringAnnotation
impl RefUnwindSafe for StringAnnotation
impl Send for StringAnnotation
impl Sync for StringAnnotation
impl Unpin for StringAnnotation
impl UnsafeUnpin for StringAnnotation
impl UnwindSafe for StringAnnotation
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