Skip to main content

Image

Enum Image 

Source
#[non_exhaustive]
pub enum Image { None, StaticArgb { argb: &'static [u8], width: usize, }, }
Expand description

An image, as held by properties of the image type.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

None

No image, the value of an image property without one.

§

StaticArgb

An image decoded at compile time into a static array of packed bytes. Bytes rather than Color values so that the generated code can carry the image in a byte-string literal, which parses much faster than an array of per-pixel constructor calls.

Fields

§argb: &'static [u8]

Four bytes per pixel, alpha, red, green, and blue, the pixels row by row from the top-left corner.

§width: usize

The number of pixels in each row.

Implementations§

Source§

impl Image

Source

pub const fn width(self) -> usize

The width in pixels. An Image::None has a width of 0.

use slint_sc::Image;

assert_eq!(Image::None.width(), 0);

let image = Image::StaticArgb { argb: &[0x80; 24], width: 3 };
assert_eq!(image.width(), 3);
Source

pub const fn height(self) -> usize

The height in pixels, derived from the pixel count and the width: an incomplete last pixel or row is not counted. An Image::None, and an Image::StaticArgb with a width of 0, have a height of 0.

use slint_sc::Image;

assert_eq!(Image::None.height(), 0);

let image = Image::StaticArgb { argb: &[0x80; 24], width: 3 };
assert_eq!(image.height(), 2);

Trait Implementations§

Source§

impl Clone for Image

Source§

fn clone(&self) -> Image

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for Image

Source§

impl Debug for Image

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for Image

Source§

fn default() -> Image

Returns the “default value” for a type. Read more
Source§

impl Eq for Image

Source§

impl PartialEq for Image

Source§

fn eq(&self, other: &Image) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

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> 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.