pub struct CellLocation {
pub row: usize,
pub column: usize,
}Expand description
Cell location
Fields§
§row: usize§column: usizeTrait Implementations§
Source§impl Clone for CellLocation
impl Clone for CellLocation
Source§fn clone(&self) -> CellLocation
fn clone(&self) -> CellLocation
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 CellLocation
impl Debug for CellLocation
Source§impl<'de> Deserialize<'de> for CellLocation
impl<'de> Deserialize<'de> for CellLocation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CellLocation
impl Serialize for CellLocation
impl Copy for CellLocation
Auto Trait Implementations§
impl Freeze for CellLocation
impl RefUnwindSafe for CellLocation
impl Send for CellLocation
impl Sync for CellLocation
impl Unpin for CellLocation
impl UnwindSafe for CellLocation
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