pub struct AutoIncrement {
pub auto_increment_span: Span,
pub value_span: Span,
pub value: u64,
}Expand description
AUTO_INCREMENT specification
Fields§
§auto_increment_span: SpanSpan of “AUTO_INCREMENT”
value_span: Span§value: u64New value for auto_increment
Trait Implementations§
Source§impl Clone for AutoIncrement
impl Clone for AutoIncrement
Source§fn clone(&self) -> AutoIncrement
fn clone(&self) -> AutoIncrement
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 AutoIncrement
impl Debug for AutoIncrement
Auto Trait Implementations§
impl Freeze for AutoIncrement
impl RefUnwindSafe for AutoIncrement
impl Send for AutoIncrement
impl Sync for AutoIncrement
impl Unpin for AutoIncrement
impl UnsafeUnpin for AutoIncrement
impl UnwindSafe for AutoIncrement
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