pub enum PrimaryKeyValue {
Integer(i64),
String(String),
Binary(Vec<u8>),
InfMax,
InfMin,
AutoIncrement,
}
Expand description
主键值
Variants§
Trait Implementations§
Source§impl Clone for PrimaryKeyValue
impl Clone for PrimaryKeyValue
Source§fn clone(&self) -> PrimaryKeyValue
fn clone(&self) -> PrimaryKeyValue
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 PrimaryKeyValue
impl Debug for PrimaryKeyValue
Source§impl Default for PrimaryKeyValue
impl Default for PrimaryKeyValue
Source§impl PartialEq for PrimaryKeyValue
impl PartialEq for PrimaryKeyValue
impl Eq for PrimaryKeyValue
impl StructuralPartialEq for PrimaryKeyValue
Auto Trait Implementations§
impl Freeze for PrimaryKeyValue
impl RefUnwindSafe for PrimaryKeyValue
impl Send for PrimaryKeyValue
impl Sync for PrimaryKeyValue
impl Unpin for PrimaryKeyValue
impl UnwindSafe for PrimaryKeyValue
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