Trait ReadAnimatedValue
pub trait ReadAnimatedValue: Clone + 'static {
type Output;
// Required method
fn value(&self) -> Self::Output;
}Required Associated Types§
type Output
Required Methods§
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.