pub struct Coordinate { /* private fields */ }
Implementations§
Source§impl Coordinate
impl Coordinate
pub fn get_col_num(&self) -> &u32
pub fn set_col_num(&mut self, value: u32) -> &mut Self
pub fn get_row_num(&self) -> &u32
pub fn set_row_num(&mut self, value: u32) -> &mut Self
pub fn get_is_lock_col(&self) -> &bool
pub fn set_is_lock_col(&mut self, value: bool) -> &mut Self
pub fn get_is_lock_row(&self) -> &bool
pub fn set_is_lock_row(&mut self, value: bool) -> &mut Self
Sourcepub fn set_coordinate<S: AsRef<str>>(&mut self, value: S) -> &mut Self
pub fn set_coordinate<S: AsRef<str>>(&mut self, value: S) -> &mut Self
Change coordinates Formula is not updated.
pub fn get_coordinate(&self) -> String
Trait Implementations§
Source§impl Clone for Coordinate
impl Clone for Coordinate
Source§fn clone(&self) -> Coordinate
fn clone(&self) -> Coordinate
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 Coordinate
impl Debug for Coordinate
Source§impl Default for Coordinate
impl Default for Coordinate
Source§fn default() -> Coordinate
fn default() -> Coordinate
Returns the “default value” for a type. Read more
Source§impl Ord for Coordinate
impl Ord for Coordinate
Source§fn cmp(&self, other: &Coordinate) -> Ordering
fn cmp(&self, other: &Coordinate) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Coordinate
impl PartialEq for Coordinate
Source§impl PartialOrd for Coordinate
impl PartialOrd for Coordinate
Source§impl ToString for Coordinate
impl ToString for Coordinate
impl Eq for Coordinate
impl StructuralPartialEq for Coordinate
Auto Trait Implementations§
impl Freeze for Coordinate
impl RefUnwindSafe for Coordinate
impl Send for Coordinate
impl Sync for Coordinate
impl Unpin for Coordinate
impl UnwindSafe for Coordinate
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.