pub struct Images {
pub images: Option<Vec<FileInfo>>,
pub gifs: Option<Vec<FileInfo>>,
}Expand description
Contains an optional list of image file information.
Fields§
§images: Option<Vec<FileInfo>>A vector of file information objects, if available.
gifs: Option<Vec<FileInfo>>A vector of animated file information objects, if available.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Images
impl<'de> Deserialize<'de> for Images
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 Images
impl RefUnwindSafe for Images
impl Send for Images
impl Sync for Images
impl Unpin for Images
impl UnwindSafe for Images
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