pub enum AttributeValue {
Show 25 variants ChannelList(ChannelList), Chromaticities(Chromaticities), Compression(Compression), EnvironmentMap(EnvironmentMap), KeyCode(KeyCode), LineOrder(LineOrder), Matrix3x3(Matrix3x3), Matrix4x4(Matrix4x4), Preview(Preview), Rational(Rational), BlockType(BlockType), TextVector(Vec<Text>), TileDescription(TileDescription), TimeCode(TimeCode), Text(Text), F64(f64), F32(f32), I32(i32), IntegerBounds(IntegerBounds), FloatRect(FloatRect), IntVec2(Vec2<i32>), FloatVec2(Vec2<f32>), IntVec3((i32, i32, i32)), FloatVec3((f32, f32, f32)), Custom { kind: Text, bytes: Vec<u8>, },
}
Expand description

Contains one of all possible attributes. Includes a variant for custom attributes.

Variants

ChannelList(ChannelList)

Channel meta data.

Chromaticities(Chromaticities)

Color space definition.

Compression(Compression)

Compression method of this layer.

EnvironmentMap(EnvironmentMap)

This image is an environment map.

KeyCode(KeyCode)

Film roll information.

LineOrder(LineOrder)

Order of the bocks in the file.

Matrix3x3(Matrix3x3)

A 3x3 matrix of floats.

Matrix4x4(Matrix4x4)

A 4x4 matrix of floats.

Preview(Preview)

8-bit rgba Preview of the image.

Rational(Rational)

An integer dividend and divisor.

BlockType(BlockType)

Deep or flat and tiled or scan line.

TextVector(Vec<Text>)

List of texts.

TileDescription(TileDescription)

How to tile up the image.

TimeCode(TimeCode)

Timepoint and more.

Text(Text)

A string of byte-chars.

F64(f64)

64-bit float

F32(f32)

32-bit float

I32(i32)

32-bit signed integer

IntegerBounds(IntegerBounds)

2D integer rectangle.

FloatRect(FloatRect)

2D float rectangle.

IntVec2(Vec2<i32>)

2D integer vector.

FloatVec2(Vec2<f32>)

2D float vector.

IntVec3((i32, i32, i32))

3D integer vector.

FloatVec3((f32, f32, f32))

3D float vector.

Custom

Fields

kind: Text

The name of the type this attribute is an instance of.

bytes: Vec<u8>

The value, stored in little-endian byte order, of the value. Use the exr::io::Data trait to extract binary values from this vector.

A custom attribute. Contains the type name of this value.

Implementations

Number of bytes this would consume in an exr file.

The exr name string of the type that an attribute can have.

Without validation, write this instance to the byte stream.

Read the value without validating. Returns Ok(Ok(attribute)) for valid attributes. Returns Ok(Err(Error)) for invalid attributes from a valid byte source. Returns Err(Error) for invalid byte sources, for example for invalid files.

Validate this instance.

Return Ok(i32) if this attribute is an i32.

Return Ok(f32) if this attribute is an f32.

Return Ok(Text) if this attribute is a text.

Return Ok(Text) if this attribute is a text.

Return Ok(Chromaticities) if this attribute is a chromaticities attribute.

Return Ok(TimeCode) if this attribute is a time code.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.