pub struct SplashCell {
pub x: u16,
pub y: u16,
pub ch: char,
pub kind: CellKind,
}Expand description
A single cell to be painted this tick.
Fields§
§x: u16§y: u16§ch: char§kind: CellKindTrait Implementations§
Source§impl Clone for SplashCell
impl Clone for SplashCell
Source§fn clone(&self) -> SplashCell
fn clone(&self) -> SplashCell
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SplashCell
Auto Trait Implementations§
impl Freeze for SplashCell
impl RefUnwindSafe for SplashCell
impl Send for SplashCell
impl Sync for SplashCell
impl Unpin for SplashCell
impl UnsafeUnpin for SplashCell
impl UnwindSafe for SplashCell
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more