pub trait IMarkerMethods: IMarker {
// Provided methods
fn get_parent(self) -> TrackAsset { ... }
fn set_parent(self, value: impl Into<TrackAsset>) { ... }
fn get_time(self) -> f64 { ... }
fn set_time(self, value: impl Into<f64>) { ... }
fn unity_engine_timeline_i_marker_initialize(
self,
parent_track: impl Into<TrackAsset>,
) { ... }
fn on_initialize(self, a_pent: impl Into<TrackAsset>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_parent(self) -> TrackAsset
fn get_parent(self) -> TrackAsset
get_parent() overload
Sourcefn set_parent(self, value: impl Into<TrackAsset>)
fn set_parent(self, value: impl Into<TrackAsset>)
set_parent(crate::unity_engine::timeline::trackasset::TrackAsset) overload
Sourcefn unity_engine_timeline_i_marker_initialize(
self,
parent_track: impl Into<TrackAsset>,
)
fn unity_engine_timeline_i_marker_initialize( self, parent_track: impl Into<TrackAsset>, )
UnityEngine.Timeline.IMarker.Initialize(crate::unity_engine::timeline::trackasset::TrackAsset) overload
Sourcefn on_initialize(self, a_pent: impl Into<TrackAsset>)
fn on_initialize(self, a_pent: impl Into<TrackAsset>)
OnInitialize(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: IMarker> IMarkerMethods for __T
Available on crate feature
unity_engine-timeline-marker only.