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