pub struct CompressedImage(pub Vec<u8>);Expand description
Binary string literal of compressed png image in presented as an vector of bytes
Tuple Fields§
§0: Vec<u8>Trait Implementations§
Source§impl Clone for CompressedImage
impl Clone for CompressedImage
Source§fn clone(&self) -> CompressedImage
fn clone(&self) -> CompressedImage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CompressedImage
impl Debug for CompressedImage
Auto Trait Implementations§
impl Freeze for CompressedImage
impl RefUnwindSafe for CompressedImage
impl Send for CompressedImage
impl Sync for CompressedImage
impl Unpin for CompressedImage
impl UnsafeUnpin for CompressedImage
impl UnwindSafe for CompressedImage
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