pub struct ParsedImage {
pub image_id: String,
pub image_type: String,
pub width: Option<u32>,
pub height: Option<u32>,
pub file_format: Option<String>,
}
Fields§
§image_id: String
§image_type: String
§width: Option<u32>
§height: Option<u32>
§file_format: Option<String>
Trait Implementations§
Source§impl Clone for ParsedImage
impl Clone for ParsedImage
Source§fn clone(&self) -> ParsedImage
fn clone(&self) -> ParsedImage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParsedImage
impl Debug for ParsedImage
Source§impl<'de> Deserialize<'de> for ParsedImage
impl<'de> Deserialize<'de> for ParsedImage
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 ParsedImage
impl RefUnwindSafe for ParsedImage
impl Send for ParsedImage
impl Sync for ParsedImage
impl Unpin for ParsedImage
impl UnwindSafe for ParsedImage
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