pub struct Row<I: Indexed>(pub u32, _);
Tuple Fields§
§0: u32
Implementations§
Source§impl Row<OneIndexed>
impl Row<OneIndexed>
pub fn new_one_indexed(c: u32) -> Row<OneIndexed>
pub fn zero_indexed(self) -> Row<ZeroIndexed>
Source§impl Row<ZeroIndexed>
impl Row<ZeroIndexed>
pub fn new_zero_indexed(c: u32) -> Row<ZeroIndexed>
pub fn one_indexed(self) -> Row<OneIndexed>
Trait Implementations§
Source§impl<'dt, I: Indexed> Deserialize<'dt> for Row<I>
impl<'dt, I: Indexed> Deserialize<'dt> for Row<I>
Source§fn deserialize<D: Deserializer<'dt>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'dt>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl<I: Ord + Indexed> Ord for Row<I>
impl<I: Ord + Indexed> Ord for Row<I>
Source§impl<I: PartialOrd + Indexed> PartialOrd for Row<I>
impl<I: PartialOrd + Indexed> PartialOrd for Row<I>
impl<I: Indexed> Copy for Row<I>
impl<I: Eq + Indexed> Eq for Row<I>
impl<I: Indexed> StructuralPartialEq for Row<I>
Auto Trait Implementations§
impl<I> Freeze for Row<I>
impl<I> RefUnwindSafe for Row<I>where
I: RefUnwindSafe,
impl<I> Send for Row<I>where
I: Send,
impl<I> Sync for Row<I>where
I: Sync,
impl<I> Unpin for Row<I>where
I: Unpin,
impl<I> UnwindSafe for Row<I>where
I: UnwindSafe,
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