pub struct IdentityMetadata {
pub seed: i64,
pub increment: i64,
}Expand description
Metadata for SQL Server identity columns.
Fields§
§seed: i64§increment: i64Implementations§
Trait Implementations§
Source§impl Clone for IdentityMetadata
impl Clone for IdentityMetadata
Source§fn clone(&self) -> IdentityMetadata
fn clone(&self) -> IdentityMetadata
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 IdentityMetadata
impl Debug for IdentityMetadata
Source§impl PartialEq for IdentityMetadata
impl PartialEq for IdentityMetadata
Source§fn eq(&self, other: &IdentityMetadata) -> bool
fn eq(&self, other: &IdentityMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for IdentityMetadata
impl Eq for IdentityMetadata
impl StructuralPartialEq for IdentityMetadata
Auto Trait Implementations§
impl Freeze for IdentityMetadata
impl RefUnwindSafe for IdentityMetadata
impl Send for IdentityMetadata
impl Sync for IdentityMetadata
impl Unpin for IdentityMetadata
impl UnsafeUnpin for IdentityMetadata
impl UnwindSafe for IdentityMetadata
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