pub trait IIIntervalMethods: IIInterval {
// Provided methods
fn get_interval_start(self) -> i64 { ... }
fn get_interval_end(self) -> i64 { ... }
}Provided Methods§
Sourcefn get_interval_start(self) -> i64
fn get_interval_start(self) -> i64
get_intervalStart() overload
Sourcefn get_interval_end(self) -> i64
fn get_interval_end(self) -> i64
get_intervalEnd() 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: IIInterval> IIIntervalMethods for __T
Available on crate feature
unity_engine-timeline-iinterval only.