[−][src]Struct exr::meta::attributes::TileDescription
Describes how the layer is divided into tiles. Specifies the size of each tile in the image and whether this image contains multiple resolution levels.
Fields
tile_size: Vec2<usize>The size of each tile. Stays the same number of pixels across all levels.
level_mode: LevelModeWhether to also store smaller versions of the image.
rounding_mode: RoundingModeWhether to round up or down when calculating Mip/Rip levels.
Methods
impl TileDescription[src]
pub fn byte_size() -> usize[src]
Number of bytes this would consume in an exr file.
pub fn write<W: Write>(&self, write: &mut W) -> PassiveResult[src]
Without validation, write this instance to the byte stream.
pub fn read<R: Read>(read: &mut R) -> Result<Self>[src]
Read the value without validating.
pub fn validate(&self) -> PassiveResult[src]
Validate this instance.
Trait Implementations
impl Clone for TileDescription[src]
fn clone(&self) -> TileDescription[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for TileDescription[src]
impl Debug for TileDescription[src]
impl Eq for TileDescription[src]
impl PartialEq<TileDescription> for TileDescription[src]
fn eq(&self, other: &TileDescription) -> bool[src]
fn ne(&self, other: &TileDescription) -> bool[src]
impl StructuralEq for TileDescription[src]
impl StructuralPartialEq for TileDescription[src]
Auto Trait Implementations
impl RefUnwindSafe for TileDescription
impl Send for TileDescription
impl Sync for TileDescription
impl Unpin for TileDescription
impl UnwindSafe for TileDescription
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
ⓘImportant traits for &'_ mut Wfn borrow_mut(&mut self) -> &mut T[src]
ⓘImportant traits for &'_ mut W
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,