pub struct Format(_);
Implementations§
source§impl Format
impl Format
sourcepub fn from_encoding(encoding: &str) -> Self
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.
pub fn format_with_space(encoding: &str, space: &Space) -> Self
pub fn exists(format_name: &str) -> bool
pub fn bytes_per_pixel(&self) -> i32
pub fn encoding(&self) -> String
pub fn model(&self) -> Model
pub fn space(&self) -> Space
pub fn type_(&self, component_index: i32) -> Type
pub fn n_components(&self) -> i32
pub fn has_alpha(&self) -> bool
pub fn is_format_n(&self) -> bool
pub fn is_palette(&self) -> bool
pub fn format_n(type_: &Type, components: i32) -> Self
Trait Implementations§
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> 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