pub enum PrimaryKeyMissing {}
Expand description
Denotes that a table has no declared PRIMARY KEY
.
Used as the Table::PrimaryKey
associated type.
This intentionally does not implement InsertInput
or Param
.
Trait Implementations§
Source§impl Clone for PrimaryKeyMissing
impl Clone for PrimaryKeyMissing
Source§fn clone(&self) -> PrimaryKeyMissing
fn clone(&self) -> PrimaryKeyMissing
Returns a copy 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 PrimaryKeyMissing
impl Debug for PrimaryKeyMissing
Source§impl Hash for PrimaryKeyMissing
impl Hash for PrimaryKeyMissing
Source§impl Ord for PrimaryKeyMissing
impl Ord for PrimaryKeyMissing
Source§fn cmp(&self, other: &PrimaryKeyMissing) -> Ordering
fn cmp(&self, other: &PrimaryKeyMissing) -> 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 PrimaryKeyMissing
impl PartialEq for PrimaryKeyMissing
Source§impl PartialOrd for PrimaryKeyMissing
impl PartialOrd for PrimaryKeyMissing
impl Copy for PrimaryKeyMissing
impl Eq for PrimaryKeyMissing
impl StructuralPartialEq for PrimaryKeyMissing
Auto Trait Implementations§
impl Freeze for PrimaryKeyMissing
impl RefUnwindSafe for PrimaryKeyMissing
impl Send for PrimaryKeyMissing
impl Sync for PrimaryKeyMissing
impl Unpin for PrimaryKeyMissing
impl UnwindSafe for PrimaryKeyMissing
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