pub struct OversizedImage {
pub index: usize,
pub size: usize,
}Expand description
Information about an oversized image
Fields§
§index: usizeIndex of the image (1-based)
size: usizeSize in bytes
Trait Implementations§
Source§impl Clone for OversizedImage
impl Clone for OversizedImage
Source§fn clone(&self) -> OversizedImage
fn clone(&self) -> OversizedImage
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 OversizedImage
impl Debug for OversizedImage
Source§impl<'de> Deserialize<'de> for OversizedImage
impl<'de> Deserialize<'de> for OversizedImage
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 OversizedImage
impl RefUnwindSafe for OversizedImage
impl Send for OversizedImage
impl Sync for OversizedImage
impl Unpin for OversizedImage
impl UnsafeUnpin for OversizedImage
impl UnwindSafe for OversizedImage
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