[][src]Struct google_healthcare1_beta1::Annotation

pub struct Annotation {
    pub text_annotation: Option<SensitiveTextAnnotation>,
    pub name: Option<String>,
    pub annotation_source: Option<AnnotationSource>,
    pub resource_annotation: Option<ResourceAnnotation>,
    pub custom_data: Option<HashMap<String, String>>,
    pub image_annotation: Option<ImageAnnotation>,
}

An annotation record.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

text_annotation: Option<SensitiveTextAnnotation>

Annotations for sensitive texts. For example, a range that describes the location of sensitive text.

name: Option<String>

Resource name of the Annotation, of the form projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/annotationStores/{annotation_store_id}/annotations/{annotation_id}.

annotation_source: Option<AnnotationSource>

Details of the source.

resource_annotation: Option<ResourceAnnotation>

Annotations for resource. For example, classification tags.

custom_data: Option<HashMap<String, String>>

Additional information for this annotation record, such as annotator and verifier information or study campaign.

image_annotation: Option<ImageAnnotation>

Annotations for images. For example, bounding polygons.

Trait Implementations

impl Clone for Annotation[src]

impl Debug for Annotation[src]

impl Default for Annotation[src]

impl<'de> Deserialize<'de> for Annotation[src]

impl RequestValue for Annotation[src]

impl ResponseResult for Annotation[src]

impl Serialize for Annotation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any