pub enum SequenceQuery {
LastValue(SchemaName, SequenceName),
AllSequences(SchemaName),
}
Expand description
Represents a query for retrieving information about sequences.
Variants§
LastValue(SchemaName, SequenceName)
Retrieves the last value of a specific sequence.
AllSequences(SchemaName)
Retrieves all sequences in the database.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SequenceQuery
impl RefUnwindSafe for SequenceQuery
impl Send for SequenceQuery
impl Sync for SequenceQuery
impl Unpin for SequenceQuery
impl UnwindSafe for SequenceQuery
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