pub trait ISamplerMethods: ISampler {
// Provided methods
fn ctor(self) { ... }
fn get_is_valid(self) -> bool { ... }
fn get_recorder(self) -> Recorder { ... }
}Provided Methods§
Sourcefn get_is_valid(self) -> bool
fn get_is_valid(self) -> bool
get_isValid() overload
Sourcefn get_recorder(self) -> Recorder
fn get_recorder(self) -> Recorder
GetRecorder() overload
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§
impl<__T: ISampler> ISamplerMethods for __T
Available on crate feature
unity_engine-profiling-sampler only.