pub struct AnnotationCoordinates {
pub id: String,
pub created_at: CreatedAt,
pub macro_name: String,
}Fields§
§id: StringAn opaque string that uniquely identifies this component within the package where it was defined.
created_at: CreatedAtMetadata required to pinpoint where the annotated component lives.
macro_name: StringThe name of the macro used to annotate the component.
Trait Implementations§
Source§impl Clone for AnnotationCoordinates
impl Clone for AnnotationCoordinates
Source§fn clone(&self) -> AnnotationCoordinates
fn clone(&self) -> AnnotationCoordinates
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 AnnotationCoordinates
impl Debug for AnnotationCoordinates
Source§impl<'de> Deserialize<'de> for AnnotationCoordinates
impl<'de> Deserialize<'de> for AnnotationCoordinates
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
Source§impl Hash for AnnotationCoordinates
impl Hash for AnnotationCoordinates
Source§impl PartialEq for AnnotationCoordinates
impl PartialEq for AnnotationCoordinates
Source§impl Serialize for AnnotationCoordinates
impl Serialize for AnnotationCoordinates
impl Eq for AnnotationCoordinates
impl StructuralPartialEq for AnnotationCoordinates
Auto Trait Implementations§
impl Freeze for AnnotationCoordinates
impl RefUnwindSafe for AnnotationCoordinates
impl Send for AnnotationCoordinates
impl Sync for AnnotationCoordinates
impl Unpin for AnnotationCoordinates
impl UnwindSafe for AnnotationCoordinates
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