Struct google_photoslibrary1::Photo[][src]

pub struct Photo {
    pub exposure_time: Option<String>,
    pub camera_make: Option<String>,
    pub focal_length: Option<f32>,
    pub iso_equivalent: Option<i32>,
    pub aperture_f_number: Option<f32>,
    pub camera_model: Option<String>,
}

Metadata that is specific to a photo, such as, ISO, focal length and exposure time. Some of these fields may be null or not included.

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

Fields

Exposure time of the camera aperture when the photo was taken.

Brand of the camera with which the photo was taken.

Focal length of the camera lens with which the photo was taken.

ISO of the camera with which the photo was taken.

Aperture f number of the camera lens with which the photo was taken.

Model of the camera with which the photo was taken.

Trait Implementations

impl Default for Photo
[src]

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

impl Clone for Photo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Photo
[src]

Formats the value using the given formatter. Read more

impl Part for Photo
[src]

Auto Trait Implementations

impl Send for Photo

impl Sync for Photo