Struct babl::Format

source ·
pub struct Format(_);

Implementations§

source§

impl Format

source

pub fn from_encoding(encoding: &str) -> Self

Returns the babl object representing the color format given by

@name such as for example "RGB u8", "CMYK float" or "CIE Lab u16", creates a format using the sRGB space, to also specify the color space and TRCs for a format, see babl_format_with_space.

source

pub fn format_with_space(encoding: &str, space: &Space) -> Self

source

pub fn exists(format_name: &str) -> bool

source

pub fn bytes_per_pixel(&self) -> i32

source

pub fn encoding(&self) -> String

source

pub fn model(&self) -> Model

source

pub fn space(&self) -> Space

source

pub fn type_(&self, component_index: i32) -> Type

source

pub fn n_components(&self) -> i32

source

pub fn has_alpha(&self) -> bool

source

pub fn is_format_n(&self) -> bool

source

pub fn is_palette(&self) -> bool

source

pub fn format_n(type_: &Type, components: i32) -> Self

Trait Implementations§

source§

impl Debug for Format

source§

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

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

impl ObjectType for Format

source§

unsafe fn from_raw_full(ptr: *const Babl) -> Self

source§

unsafe fn inner(&self) -> *const Babl

source§

fn name(&self) -> String

source§

fn introspect(&self)

Auto Trait Implementations§

§

impl RefUnwindSafe for Format

§

impl !Send for Format

§

impl !Sync for Format

§

impl Unpin for Format

§

impl UnwindSafe for Format

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.