[][src]Struct exr::meta::ImageAttributes

pub struct ImageAttributes {
    pub display_window: IntRect,
    pub pixel_aspect: f32,
    pub list: Vec<Attribute>,
}

Includes mandatory fields like pixel aspect or display window which must be the same for all layers.

Fields

display_window: IntRect

The rectangle anywhere in the global infinite 2D space that clips all contents of the file.

pixel_aspect: f32

Aspect ratio of each pixel in this header.

list: Vec<Attribute>

Optional attributes. Contains custom attributes. Does not contain the attributes already present in the ImageAttributes. Contains only attributes that are standardized to be the same for all headers: chromaticities and time codes.

Trait Implementations

impl Clone for ImageAttributes[src]

impl Debug for ImageAttributes[src]

impl PartialEq<ImageAttributes> for ImageAttributes[src]

impl StructuralPartialEq for ImageAttributes[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.