pub struct AnnotateImageResponse {
Show 14 fields pub context: Option<ImageAnnotationContext>, pub crop_hints_annotation: Option<CropHintsAnnotation>, pub error: Option<Status>, pub face_annotations: Option<Vec<FaceAnnotation>>, pub full_text_annotation: Option<TextAnnotation>, pub image_properties_annotation: Option<ImageProperties>, pub label_annotations: Option<Vec<EntityAnnotation>>, pub landmark_annotations: Option<Vec<EntityAnnotation>>, pub localized_object_annotations: Option<Vec<LocalizedObjectAnnotation>>, pub logo_annotations: Option<Vec<EntityAnnotation>>, pub product_search_results: Option<ProductSearchResults>, pub safe_search_annotation: Option<SafeSearchAnnotation>, pub text_annotations: Option<Vec<EntityAnnotation>>, pub web_detection: Option<WebDetection>,
}
Expand description

Response to an image annotation request.

This type is not used in any activity, and only used as part of another schema.

Fields§

§context: Option<ImageAnnotationContext>

If present, contextual information is needed to understand where this image comes from.

§crop_hints_annotation: Option<CropHintsAnnotation>

If present, crop hints have completed successfully.

§error: Option<Status>

If set, represents the error message for the operation. Note that filled-in image annotations are guaranteed to be correct, even when error is set.

§face_annotations: Option<Vec<FaceAnnotation>>

If present, face detection has completed successfully.

§full_text_annotation: Option<TextAnnotation>

If present, text (OCR) detection or document (OCR) text detection has completed successfully. This annotation provides the structural hierarchy for the OCR detected text.

§image_properties_annotation: Option<ImageProperties>

If present, image properties were extracted successfully.

§label_annotations: Option<Vec<EntityAnnotation>>

If present, label detection has completed successfully.

§landmark_annotations: Option<Vec<EntityAnnotation>>

If present, landmark detection has completed successfully.

§localized_object_annotations: Option<Vec<LocalizedObjectAnnotation>>

If present, localized object detection has completed successfully. This will be sorted descending by confidence score.

§logo_annotations: Option<Vec<EntityAnnotation>>

If present, logo detection has completed successfully.

§product_search_results: Option<ProductSearchResults>

If present, product search has completed successfully.

§safe_search_annotation: Option<SafeSearchAnnotation>

If present, safe-search annotation has completed successfully.

§text_annotations: Option<Vec<EntityAnnotation>>

If present, text (OCR) detection has completed successfully.

§web_detection: Option<WebDetection>

If present, web detection has completed successfully.

Trait Implementations§

source§

impl Clone for AnnotateImageResponse

source§

fn clone(&self) -> AnnotateImageResponse

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AnnotateImageResponse

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for AnnotateImageResponse

source§

fn default() -> AnnotateImageResponse

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for AnnotateImageResponse

source§

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 Serialize for AnnotateImageResponse

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Part for AnnotateImageResponse

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

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