pub struct CellReferenceIndex {
pub sheet: u32,
pub column: i32,
pub row: i32,
}Fields§
§sheet: u32§column: i32§row: i32Trait Implementations§
Source§impl Clone for CellReferenceIndex
impl Clone for CellReferenceIndex
Source§fn clone(&self) -> CellReferenceIndex
fn clone(&self) -> CellReferenceIndex
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 CellReferenceIndex
impl Debug for CellReferenceIndex
Source§impl<'de> Deserialize<'de> for CellReferenceIndex
impl<'de> Deserialize<'de> for CellReferenceIndex
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 Hash for CellReferenceIndex
impl Hash for CellReferenceIndex
Source§impl PartialEq for CellReferenceIndex
impl PartialEq for CellReferenceIndex
Source§fn eq(&self, other: &CellReferenceIndex) -> bool
fn eq(&self, other: &CellReferenceIndex) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CellReferenceIndex
impl Serialize for CellReferenceIndex
impl Copy for CellReferenceIndex
impl Eq for CellReferenceIndex
impl StructuralPartialEq for CellReferenceIndex
Auto Trait Implementations§
impl Freeze for CellReferenceIndex
impl RefUnwindSafe for CellReferenceIndex
impl Send for CellReferenceIndex
impl Sync for CellReferenceIndex
impl Unpin for CellReferenceIndex
impl UnsafeUnpin for CellReferenceIndex
impl UnwindSafe for CellReferenceIndex
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