pub struct Annotation {
pub annotation_type: AnnotationType,
pub open: bool,
pub icon_location: LtrbBounds,
pub popup_location: LtrbBounds,
pub color: Color,
pub author: String,
pub name: String,
pub date: String,
pub data: AnnotationData,
}Expand description
TS Annotation.
Fields§
§annotation_type: AnnotationTypeTS field type
open: bool§icon_location: LtrbBounds§popup_location: LtrbBounds§color: Color§name: String§date: String§data: AnnotationDataTrait Implementations§
Source§impl Clone for Annotation
impl Clone for Annotation
Source§fn clone(&self) -> Annotation
fn clone(&self) -> Annotation
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 moreAuto Trait Implementations§
impl Freeze for Annotation
impl RefUnwindSafe for Annotation
impl Send for Annotation
impl Sync for Annotation
impl Unpin for Annotation
impl UnsafeUnpin for Annotation
impl UnwindSafe for Annotation
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