pub enum TextContentAnnotationType {
UrlCitation(UrlCitation),
FileCitation(FileCitation),
PlaceCitation(PlaceCitation),
WordInfo(WordInfo),
}Expand description
The type oneof of TextContentAnnotation, as an owned value.
Variants§
UrlCitation(UrlCitation)
FileCitation(FileCitation)
PlaceCitation(PlaceCitation)
WordInfo(WordInfo)
Trait Implementations§
Source§impl Clone for TextContentAnnotationType
impl Clone for TextContentAnnotationType
Source§fn clone(&self) -> TextContentAnnotationType
fn clone(&self) -> TextContentAnnotationType
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 TextContentAnnotationType
impl Debug for TextContentAnnotationType
impl StructuralPartialEq for TextContentAnnotationType
Auto Trait Implementations§
impl Freeze for TextContentAnnotationType
impl RefUnwindSafe for TextContentAnnotationType
impl Send for TextContentAnnotationType
impl Sync for TextContentAnnotationType
impl Unpin for TextContentAnnotationType
impl UnsafeUnpin for TextContentAnnotationType
impl UnwindSafe for TextContentAnnotationType
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