[][src]Struct swf_tree::tags::DefineDynamicText

pub struct DefineDynamicText {
    pub id: u16,
    pub bounds: Rect,
    pub word_wrap: bool,
    pub multiline: bool,
    pub password: bool,
    pub readonly: bool,
    pub auto_size: bool,
    pub no_select: bool,
    pub border: bool,
    pub was_static: bool,
    pub html: bool,
    pub use_glyph_font: bool,
    pub font_id: Option<u16>,
    pub font_class: Option<String>,
    pub font_size: Option<u16>,
    pub color: Option<StraightSRgba8>,
    pub max_length: Option<usize>,
    pub align: Option<TextAlignment>,
    pub margin_left: u16,
    pub margin_right: u16,
    pub indent: u16,
    pub leading: i16,
    pub variable_name: Option<String>,
    pub text: Option<String>,
}

Fields

id: u16bounds: Rectword_wrap: boolmultiline: boolpassword: boolreadonly: boolauto_size: boolno_select: boolborder: boolwas_static: boolhtml: booluse_glyph_font: boolfont_id: Option<u16>font_class: Option<String>font_size: Option<u16>color: Option<StraightSRgba8>max_length: Option<usize>align: Option<TextAlignment>margin_left: u16margin_right: u16indent: u16leading: i16variable_name: Option<String>text: Option<String>

Trait Implementations

impl PartialEq<DefineDynamicText> for DefineDynamicText[src]

impl Eq for DefineDynamicText[src]

impl Debug for DefineDynamicText[src]

impl Serialize for DefineDynamicText[src]

impl<'de> Deserialize<'de> for DefineDynamicText[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]