Struct arboard::ImageData

source ·
pub struct ImageData<'a> {
    pub width: usize,
    pub height: usize,
    pub bytes: Cow<'a, [u8]>,
}
Expand description

Stores pixel data of an image.

Each element in bytes stores the value of a channel of a single pixel. This struct stores four channels (red, green, blue, alpha) so a 3*3 image is going to be stored on 3*3*4 = 36 bytes of data.

The pixels are in row-major order meaning that the second pixel in bytes (starting at the fifth byte) corresponds to the pixel that’s sitting to the right side of the top-left pixel (x=1, y=0)

Assigning a 2*1 image would for example look like this

use arboard::ImageData;
use std::borrow::Cow;
let bytes = [
    // A red pixel
    255, 0, 0, 255,

    // A green pixel
    0, 255, 0, 255,
];
let img = ImageData {
    width: 2,
    height: 1,
    bytes: Cow::from(bytes.as_ref())
};

Fields§

§width: usize§height: usize§bytes: Cow<'a, [u8]>

Implementations§

source§

impl<'a> ImageData<'a>

source

pub fn into_owned_bytes(self) -> Cow<'static, [u8]>

Returns a the bytes field in a way that it’s guaranteed to be owned. It moves the bytes if they are already owned and clones them if they are borrowed.

source

pub fn to_owned_img(&self) -> ImageData<'static>

Returns an image data that is guaranteed to own its bytes. It moves the bytes if they are already owned and clones them if they are borrowed.

Trait Implementations§

source§

impl<'a> Clone for ImageData<'a>

source§

fn clone(&self) -> ImageData<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for ImageData<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for ImageData<'a>

§

impl<'a> RefUnwindSafe for ImageData<'a>

§

impl<'a> Send for ImageData<'a>

§

impl<'a> Sync for ImageData<'a>

§

impl<'a> Unpin for ImageData<'a>

§

impl<'a> UnwindSafe for ImageData<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.