pub struct PictureInfo {
pub data: Vec<u8>,
pub format: ImageFormat,
pub cell: String,
pub width_px: u32,
pub height_px: u32,
}Expand description
Information about a picture retrieved from a worksheet.
Fields§
§data: Vec<u8>Raw image bytes.
format: ImageFormatImage format.
cell: StringAnchor cell reference (e.g., "B2").
width_px: u32Image width in pixels.
height_px: u32Image height in pixels.
Trait Implementations§
Source§impl Clone for PictureInfo
impl Clone for PictureInfo
Source§fn clone(&self) -> PictureInfo
fn clone(&self) -> PictureInfo
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 moreAuto Trait Implementations§
impl Freeze for PictureInfo
impl RefUnwindSafe for PictureInfo
impl Send for PictureInfo
impl Sync for PictureInfo
impl Unpin for PictureInfo
impl UnwindSafe for PictureInfo
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