pub enum UInt64Policy {
Reject,
Decimal20_0,
CheckedBigInt,
}Expand description
Unsigned 64-bit integer conversion policy.
Variants§
Reject
Reject UInt64 columns.
Decimal20_0
Target SQL Server decimal(20,0).
CheckedBigInt
Target bigint after checking values fit signed 64-bit range.
Trait Implementations§
Source§impl Clone for UInt64Policy
impl Clone for UInt64Policy
Source§fn clone(&self) -> UInt64Policy
fn clone(&self) -> UInt64Policy
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 UInt64Policy
impl Debug for UInt64Policy
Source§impl Default for UInt64Policy
impl Default for UInt64Policy
Source§fn default() -> UInt64Policy
fn default() -> UInt64Policy
Returns the “default value” for a type. Read more
Source§impl Hash for UInt64Policy
impl Hash for UInt64Policy
Source§impl PartialEq for UInt64Policy
impl PartialEq for UInt64Policy
Source§fn eq(&self, other: &UInt64Policy) -> bool
fn eq(&self, other: &UInt64Policy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for UInt64Policy
impl Eq for UInt64Policy
impl StructuralPartialEq for UInt64Policy
Auto Trait Implementations§
impl Freeze for UInt64Policy
impl RefUnwindSafe for UInt64Policy
impl Send for UInt64Policy
impl Sync for UInt64Policy
impl Unpin for UInt64Policy
impl UnsafeUnpin for UInt64Policy
impl UnwindSafe for UInt64Policy
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