Struct lcms2::NamedColorList

source ·
pub struct NamedColorList(/* private fields */);
Expand description

Palette of colors with names

Implementations§

source§

impl NamedColorList

source

pub fn new( spot_colors: usize, colorant_count: usize, prefix: &str, suffix: &str ) -> LCMSResult<Self>

Methods from Deref<Target = NamedColorListRef>§

source

pub fn index_of(&self, color_name: &str) -> usize

Find color by name

source

pub fn get(&self, index: usize) -> Option<NamedColorInfo>

Get color info

source

pub fn colors(&self) -> Vec<NamedColorInfo>

source

pub fn append( &mut self, color_name: &str, pcs: [u16; 3], colorant: [u16; 16] ) -> bool

Push a color at the end of the palette

Trait Implementations§

source§

impl AsMut<NamedColorListRef> for NamedColorList

source§

fn as_mut(&mut self) -> &mut NamedColorListRef

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<NamedColorListRef> for NamedColorList

source§

fn as_ref(&self) -> &NamedColorListRef

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Borrow<NamedColorListRef> for NamedColorList

source§

fn borrow(&self) -> &NamedColorListRef

Immutably borrows from an owned value. Read more
source§

impl BorrowMut<NamedColorListRef> for NamedColorList

source§

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

Mutably borrows from an owned value. Read more
source§

impl Deref for NamedColorList

§

type Target = NamedColorListRef

The resulting type after dereferencing.
source§

fn deref(&self) -> &NamedColorListRef

Dereferences the value.
source§

impl DerefMut for NamedColorList

source§

fn deref_mut(&mut self) -> &mut NamedColorListRef

Mutably dereferences the value.
source§

impl Drop for NamedColorList

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl ForeignType for NamedColorList

§

type CType = NAMEDCOLORLIST

The raw C type.
§

type Ref = NamedColorListRef

The type representing a reference to this type.
source§

unsafe fn from_ptr(ptr: *mut NAMEDCOLORLIST) -> NamedColorList

Constructs an instance of this type from its raw type. Read more
source§

fn as_ptr(&self) -> *mut NAMEDCOLORLIST

Returns a raw pointer to the wrapped value.
source§

fn into_ptr(self) -> *mut Self::CType

Consumes the wrapper and returns the raw pointer.

Auto Trait Implementations§

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