Struct cuivre::graphics::textures::TextureOptions[][src]

pub struct TextureOptions {
    pub format: TextureFormat,
    pub h_wrap_mode: WrapMode,
    pub v_wrap_mode: WrapMode,
    pub min_filter_mode: MinFilterMode,
    pub max_filter_mode: MaxFilterMode,
}

Options for texture display.

Fields

Trait Implementations

impl Debug for TextureOptions
[src]

Formats the value using the given formatter. Read more

impl Copy for TextureOptions
[src]

impl Clone for TextureOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for TextureOptions
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations