Struct google_dlp2::GooglePrivacyDlpV2BoundingBox[][src]

pub struct GooglePrivacyDlpV2BoundingBox {
    pub width: Option<i32>,
    pub top: Option<i32>,
    pub left: Option<i32>,
    pub height: Option<i32>,
}

Bounding box encompassing detected text within an image.

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

Fields

Width of the bounding box in pixels.

Top coordinate of the bounding box. (0,0) is upper left.

Left coordinate of the bounding box. (0,0) is upper left.

Height of the bounding box in pixels.

Trait Implementations

impl Default for GooglePrivacyDlpV2BoundingBox
[src]

Returns the "default value" for a type. Read more

impl Clone for GooglePrivacyDlpV2BoundingBox
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2BoundingBox
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2BoundingBox
[src]

Auto Trait Implementations