Skip to main content

IIMarker_InterfaceMethods

Trait IIMarker_InterfaceMethods 

Source
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§

Source

fn get_time(self) -> f64

get_time() overload

Source

fn set_time(self, value: impl Into<f64>)

set_time(f64) overload

Source

fn get_parent(self) -> TrackAsset

get_parent() overload

Source

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§

Source§

impl<__T: IIMarker_Interface> IIMarker_InterfaceMethods for __T

Available on crate feature unity_engine-timeline-imarker_interface only.