pub struct Image {
pub rgba: Bytes,
pub size: Size<u32>,
}Expand description
A clipboard image.
Fields§
§rgba: BytesThe pixels of the image in RGBA format.
size: Size<u32>The physical Size of the image.
Trait Implementations§
impl StructuralPartialEq for Image
Auto Trait Implementations§
impl !Freeze for Image
impl RefUnwindSafe for Image
impl Send for Image
impl Sync for Image
impl Unpin for Image
impl UnsafeUnpin for Image
impl UnwindSafe for Image
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