Struct rusoto_rekognition::Landmark[][src]

pub struct Landmark {
    pub type_: Option<String>,
    pub x: Option<f32>,
    pub y: Option<f32>,
}

Indicates the location of the landmark on the face.

Fields

Type of the landmark.

x-coordinate from the top left of the landmark expressed as the ratio of the width of the image. For example, if the images is 700x200 and the x-coordinate of the landmark is at 350 pixels, this value is 0.5.

y-coordinate from the top left of the landmark expressed as the ratio of the height of the image. For example, if the images is 700x200 and the y-coordinate of the landmark is at 100 pixels, this value is 0.5.

Trait Implementations

impl Default for Landmark
[src]

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

impl Debug for Landmark
[src]

Formats the value using the given formatter. Read more

impl Clone for Landmark
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Landmark
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Landmark

impl Sync for Landmark