pub trait IIMarker_InterfaceMethods: IIMarker_Interface {
// Provided methods
fn get_time(self) -> f64 { ... }
fn set_time(self, value: impl Into<f64>) { ... }
fn get_parent(self) -> TrackAsset { ... }
fn initialize(self, parent: impl Into<TrackAsset>) { ... }
}Provided Methods§
Sourcefn get_parent(self) -> TrackAsset
fn get_parent(self) -> TrackAsset
get_parent() overload
Sourcefn initialize(self, parent: impl Into<TrackAsset>)
fn initialize(self, parent: impl Into<TrackAsset>)
Initialize(crate::unity_engine::timeline::trackasset::TrackAsset) 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: IIMarker_Interface> IIMarker_InterfaceMethods for __T
Available on crate feature
unity_engine-timeline-imarker_interface only.