GIFHandlerMethods

Trait GIFHandlerMethods 

Source
pub trait GIFHandlerMethods: ImageHandlerMethods {
    // Provided method
    fn save_animation(
        &self,
        images: *const c_void,
        stream: *mut c_void,
        verbose: bool,
        delay_milli_secs: c_int,
    ) -> bool { ... }
}
Expand description

This trait represents C++ wxGIFHandler class’s methods and inheritance.

See GIFHandlerIsOwned documentation for the class usage.

Provided Methods§

Source

fn save_animation( &self, images: *const c_void, stream: *mut c_void, verbose: bool, delay_milli_secs: c_int, ) -> bool

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<const OWNED: bool> GIFHandlerMethods for GIFHandlerIsOwned<OWNED>