pub struct PlaceObject {
Show 15 fields pub is_update: bool, pub depth: u16, pub character_id: Option<u16>, pub class_name: Option<String>, pub matrix: Option<Matrix>, pub color_transform: Option<ColorTransformWithAlpha>, pub ratio: Option<u16>, pub name: Option<String>, pub clip_depth: Option<u16>, pub filters: Option<Vec<Filter>>, pub blend_mode: Option<BlendMode>, pub bitmap_cache: Option<bool>, pub visible: Option<bool>, pub background_color: Option<StraightSRgba8>, pub clip_actions: Option<Vec<ClipAction>>,
}

Fields

is_update: bool

Corresponds to is_move in the SWF spec.

depth: u16character_id: Option<u16>class_name: Option<String>matrix: Option<Matrix>color_transform: Option<ColorTransformWithAlpha>ratio: Option<u16>name: Option<String>clip_depth: Option<u16>filters: Option<Vec<Filter>>blend_mode: Option<BlendMode>bitmap_cache: Option<bool>visible: Option<bool>background_color: Option<StraightSRgba8>clip_actions: Option<Vec<ClipAction>>

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

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

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.