pub struct PictureResponse {
pub id: Uuid,
pub name: String,
pub path: Option<String>,
pub picture_date: Option<NaiveDateTime>,
pub person_id: Option<Uuid>,
pub camera: Option<Uuid>,
}
Fields§
§id: Uuid
§name: String
§path: Option<String>
§picture_date: Option<NaiveDateTime>
§person_id: Option<Uuid>
§camera: Option<Uuid>
Trait Implementations§
Source§impl Debug for PictureResponse
impl Debug for PictureResponse
Source§impl<'de> Deserialize<'de> for PictureResponse
impl<'de> Deserialize<'de> for PictureResponse
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 PictureResponse
impl RefUnwindSafe for PictureResponse
impl Send for PictureResponse
impl Sync for PictureResponse
impl Unpin for PictureResponse
impl UnwindSafe for PictureResponse
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