pub trait WritingAnim:
WritingRequirement
+ Sized
+ 'static {
// Required methods
fn write(&mut self) -> AnimationCell<Self>;
fn unwrite(&mut self) -> AnimationCell<Self>;
}Expand description
The methods to create animations for T that satisfies WritingRequirement
Required Methods§
Sourcefn write(&mut self) -> AnimationCell<Self>
fn write(&mut self) -> AnimationCell<Self>
Create a Write anim for T.
Sourcefn unwrite(&mut self) -> AnimationCell<Self>
fn unwrite(&mut self) -> AnimationCell<Self>
Create a Unwrite anim for T.
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.