pub struct CanvasCell {
pub x: u16,
pub y: u16,
pub symbol: char,
pub style: Style,
}Fields§
§x: u16§y: u16§symbol: char§style: StyleTrait Implementations§
Source§impl Clone for CanvasCell
impl Clone for CanvasCell
Source§fn clone(&self) -> CanvasCell
fn clone(&self) -> CanvasCell
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CanvasCell
impl Debug for CanvasCell
Source§impl PartialEq for CanvasCell
impl PartialEq for CanvasCell
impl Eq for CanvasCell
impl StructuralPartialEq for CanvasCell
Auto Trait Implementations§
impl Freeze for CanvasCell
impl RefUnwindSafe for CanvasCell
impl Send for CanvasCell
impl Sync for CanvasCell
impl Unpin for CanvasCell
impl UnsafeUnpin for CanvasCell
impl UnwindSafe for CanvasCell
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