Trait sourceview5::prelude::TextureExt

source ·
pub trait TextureExt: IsA<Texture> + Sealed + 'static {
    // Provided methods
    fn format(&self) -> MemoryFormat { ... }
    fn height(&self) -> i32 { ... }
    fn width(&self) -> i32 { ... }
    fn save_to_png(&self, filename: impl AsRef<Path>) -> Result<(), BoolError> { ... }
    fn save_to_png_bytes(&self) -> Bytes { ... }
    fn save_to_tiff(&self, filename: impl AsRef<Path>) -> Result<(), BoolError> { ... }
    fn save_to_tiff_bytes(&self) -> Bytes { ... }
}

Provided Methods§

source

fn format(&self) -> MemoryFormat

source

fn height(&self) -> i32

source

fn width(&self) -> i32

source

fn save_to_png(&self, filename: impl AsRef<Path>) -> Result<(), BoolError>

source

fn save_to_png_bytes(&self) -> Bytes

source

fn save_to_tiff(&self, filename: impl AsRef<Path>) -> Result<(), BoolError>

source

fn save_to_tiff_bytes(&self) -> Bytes

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> TextureExt for O
where O: IsA<Texture>,