pub struct Photo {
pub camera_make: String,
pub camera_model: String,
pub exposure_denominator: i64,
pub exposure_numerator: i64,
pub f_number: i64,
pub focal_length: i64,
pub iso: i32,
pub taken_date_time: String,
}
Fields§
§camera_make: String
§camera_model: String
§exposure_denominator: i64
§exposure_numerator: i64
§f_number: i64
§focal_length: i64
§iso: i32
§taken_date_time: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Photo
impl<'de> Deserialize<'de> for Photo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Photo
impl StructuralPartialEq for Photo
Auto Trait Implementations§
impl Freeze for Photo
impl RefUnwindSafe for Photo
impl Send for Photo
impl Sync for Photo
impl Unpin for Photo
impl UnwindSafe for Photo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more