pub struct UserRecentImageResponse {
pub id: ImageId,
pub library: MediaLibrary,
pub last_used: DateTime<Utc>,
}
Expand description
Over-the-wire representation of a single recent image.
Fields§
§id: ImageId
The image’s ID.
library: MediaLibrary
The library that the image belongs to.
last_used: DateTime<Utc>
When the image was last used.
Trait Implementations§
Source§impl Debug for UserRecentImageResponse
impl Debug for UserRecentImageResponse
Source§impl<'de> Deserialize<'de> for UserRecentImageResponse
impl<'de> Deserialize<'de> for UserRecentImageResponse
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 UserRecentImageResponse
impl RefUnwindSafe for UserRecentImageResponse
impl Send for UserRecentImageResponse
impl Sync for UserRecentImageResponse
impl Unpin for UserRecentImageResponse
impl UnwindSafe for UserRecentImageResponse
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