pub struct SerializableCell {
pub number: i8,
pub cleared: bool,
pub flagged: bool,
pub coordinates: SerializablePoint,
}Fields§
§number: i8§cleared: bool§flagged: bool§coordinates: SerializablePointTrait Implementations§
Source§impl Clone for SerializableCell
impl Clone for SerializableCell
Source§fn clone(&self) -> SerializableCell
fn clone(&self) -> SerializableCell
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<'de> Deserialize<'de> for SerializableCell
impl<'de> Deserialize<'de> for SerializableCell
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 From<Cell> for SerializableCell
impl From<Cell> for SerializableCell
Source§impl From<SerializableCell> for Cell
impl From<SerializableCell> for Cell
Source§fn from(cell: SerializableCell) -> Self
fn from(cell: SerializableCell) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SerializableCell
impl RefUnwindSafe for SerializableCell
impl Send for SerializableCell
impl Sync for SerializableCell
impl Unpin for SerializableCell
impl UnwindSafe for SerializableCell
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