pub struct ReflectPgSequence {
pub seqrelid: String,
pub seqtypid: String,
pub seqstart: i64,
pub seqincrement: i64,
pub seqmax: i64,
pub seqmin: i64,
pub seqcache: i64,
pub seqcycle: bool,
}Fields§
§seqrelid: String§seqtypid: String§seqstart: i64§seqincrement: i64§seqmax: i64§seqmin: i64§seqcache: i64§seqcycle: boolTrait Implementations§
Source§impl Clone for ReflectPgSequence
impl Clone for ReflectPgSequence
Source§fn clone(&self) -> ReflectPgSequence
fn clone(&self) -> ReflectPgSequence
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 ReflectPgSequence
impl Debug for ReflectPgSequence
Source§impl<'a> From<ReflectPgSequenceBorrowed<'a>> for ReflectPgSequence
impl<'a> From<ReflectPgSequenceBorrowed<'a>> for ReflectPgSequence
Source§fn from(_: ReflectPgSequenceBorrowed<'a>) -> Self
fn from(_: ReflectPgSequenceBorrowed<'a>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReflectPgSequence
impl PartialEq for ReflectPgSequence
impl StructuralPartialEq for ReflectPgSequence
Auto Trait Implementations§
impl Freeze for ReflectPgSequence
impl RefUnwindSafe for ReflectPgSequence
impl Send for ReflectPgSequence
impl Sync for ReflectPgSequence
impl Unpin for ReflectPgSequence
impl UnsafeUnpin for ReflectPgSequence
impl UnwindSafe for ReflectPgSequence
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