[][src]Struct yy_boss::TextureGroup

pub struct TextureGroup {
    pub is_scaled: bool,
    pub autocrop: bool,
    pub border: usize,
    pub mips_to_generate: GenerateMipMaps,
    pub targets: usize,
    pub resource_version: ResourceVersion,
    pub name: String,
    pub resource_type: ConstGmTextureGroup,
}

Fields

is_scaled: boolautocrop: boolborder: usizemips_to_generate: GenerateMipMapstargets: usizeresource_version: ResourceVersionname: Stringresource_type: ConstGmTextureGroup

Trait Implementations

impl Clone for TextureGroup[src]

impl Debug for TextureGroup[src]

impl Default for TextureGroup[src]

fn default() -> TextureGroup[src]

Return TextureGroup { is_scaled: true, autocrop: true, border: 2, mips_to_generate: Default::default(), targets: 461609314234257646, resource_version: Default::default(), name: "Default" . to_string(), resource_type: Default::default() }

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

impl Eq for TextureGroup[src]

impl Into<TexturePath> for TextureGroup[src]

impl<'_> Into<TexturePath> for &'_ TextureGroup[src]

impl PartialEq<TextureGroup> for TextureGroup[src]

impl Serialize for TextureGroup[src]

impl YypSerialization for TextureGroup[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> SetParameter for T

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,