pub trait anyTrait: anyTraitConst {
// Required method
fn as_raw_mut_any(&mut self) -> *mut c_void;
// Provided methods
fn set(&mut self, unnamed: any) { ... }
fn set_1(&mut self, src: &impl anyTraitConst) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::gapi::any
Required Methods§
fn as_raw_mut_any(&mut self) -> *mut c_void
Provided Methods§
fn set(&mut self, unnamed: any)
fn set_1(&mut self, src: &impl anyTraitConst) -> Result<()>
Object Safety§
This trait is not object safe.