Struct exr::meta::attribute::ChannelList

source ·
pub struct ChannelList {
    pub list: SmallVec<[ChannelDescription; 5]>,
    pub bytes_per_pixel: usize,
    pub uniform_sample_type: Option<SampleType>,
}
Expand description

A List of channels. Channels must be sorted alphabetically.

Fields§

§list: SmallVec<[ChannelDescription; 5]>

The channels in this list.

§bytes_per_pixel: usize

The number of bytes that one pixel in this image needs.

§uniform_sample_type: Option<SampleType>

The sample type of all channels, if all channels have the same type.

Implementations§

source§

impl ChannelList

source

pub fn new(channels: SmallVec<[ChannelDescription; 5]>) -> Self

Does not validate channel order.

source

pub fn channels_with_byte_offset( &self ) -> impl Iterator<Item = (usize, &ChannelDescription)>

Iterate over the channels, and adds to each channel the byte offset of the channels sample type. Assumes the internal channel list is properly sorted.

source

pub fn find_index_of_channel(&self, exact_name: &Text) -> Option<usize>

Return the index of the channel with the exact name, case sensitive, or none. Potentially uses less than linear time.

source§

impl ChannelList

source

pub fn byte_size(&self) -> usize

Number of bytes this would consume in an exr file.

source

pub fn write(&self, write: &mut impl Write) -> UnitResult

Without validation, write this instance to the byte stream. Assumes channels are sorted alphabetically and all values are validated.

source

pub fn read(read: &mut PeekRead<impl Read>) -> Result<Self>

Read the value without validating.

source

pub fn validate( &self, allow_sampling: bool, data_window: IntegerBounds, strict: bool ) -> UnitResult

Check if channels are valid and sorted.

Trait Implementations§

source§

impl Clone for ChannelList

source§

fn clone(&self) -> ChannelList

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 Debug for ChannelList

source§

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

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

impl Hash for ChannelList

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<ChannelList> for ChannelList

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for ChannelList

source§

impl StructuralEq for ChannelList

source§

impl StructuralPartialEq for ChannelList

Auto Trait Implementations§

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> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

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