pub struct GridEditSession {
pub focused_cell: GridCellPosition,
pub editing_cell: GridCellPosition,
pub editing_value: String,
}Fields§
§focused_cell: GridCellPosition§editing_cell: GridCellPosition§editing_value: StringTrait Implementations§
Source§impl Clone for GridEditSession
impl Clone for GridEditSession
Source§fn clone(&self) -> GridEditSession
fn clone(&self) -> GridEditSession
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 GridEditSession
impl Debug for GridEditSession
Source§impl<'de> Deserialize<'de> for GridEditSession
impl<'de> Deserialize<'de> for GridEditSession
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 GridEditSession
impl PartialEq for GridEditSession
Source§fn eq(&self, other: &GridEditSession) -> bool
fn eq(&self, other: &GridEditSession) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GridEditSession
impl Serialize for GridEditSession
impl Eq for GridEditSession
impl StructuralPartialEq for GridEditSession
Auto Trait Implementations§
impl Freeze for GridEditSession
impl RefUnwindSafe for GridEditSession
impl Send for GridEditSession
impl Sync for GridEditSession
impl Unpin for GridEditSession
impl UnsafeUnpin for GridEditSession
impl UnwindSafe for GridEditSession
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