pub struct UpdatePhotoRequest {
pub title: Option<Update<String>>,
pub artist: Option<Update<String>>,
pub copyright: Option<Update<String>>,
pub date_taken: Option<Update<NaiveDateTime>>,
}Fields§
§title: Option<Update<String>>§artist: Option<Update<String>>§copyright: Option<Update<String>>§date_taken: Option<Update<NaiveDateTime>>Trait Implementations§
Source§impl Debug for UpdatePhotoRequest
impl Debug for UpdatePhotoRequest
Source§impl<'de> Deserialize<'de> for UpdatePhotoRequest
impl<'de> Deserialize<'de> for UpdatePhotoRequest
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
Auto Trait Implementations§
impl Freeze for UpdatePhotoRequest
impl RefUnwindSafe for UpdatePhotoRequest
impl Send for UpdatePhotoRequest
impl Sync for UpdatePhotoRequest
impl Unpin for UpdatePhotoRequest
impl UnwindSafe for UpdatePhotoRequest
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