pub struct GridCellPosition {
pub row_id: String,
pub column_name: String,
}Fields§
§row_id: String§column_name: StringTrait Implementations§
Source§impl Clone for GridCellPosition
impl Clone for GridCellPosition
Source§fn clone(&self) -> GridCellPosition
fn clone(&self) -> GridCellPosition
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 moreSource§impl Debug for GridCellPosition
impl Debug for GridCellPosition
Source§impl Default for GridCellPosition
impl Default for GridCellPosition
Source§fn default() -> GridCellPosition
fn default() -> GridCellPosition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GridCellPosition
impl<'de> Deserialize<'de> for GridCellPosition
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 PartialEq for GridCellPosition
impl PartialEq for GridCellPosition
Source§fn eq(&self, other: &GridCellPosition) -> bool
fn eq(&self, other: &GridCellPosition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GridCellPosition
impl Serialize for GridCellPosition
impl Eq for GridCellPosition
impl StructuralPartialEq for GridCellPosition
Auto Trait Implementations§
impl Freeze for GridCellPosition
impl RefUnwindSafe for GridCellPosition
impl Send for GridCellPosition
impl Sync for GridCellPosition
impl Unpin for GridCellPosition
impl UnsafeUnpin for GridCellPosition
impl UnwindSafe for GridCellPosition
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