pub enum SqlSchemaCommand {
Show 38 variants
ExplainAlter(ExplainAlterQuery),
CreateTable(CreateTableQuery),
DropTable(DropTableQuery),
DropGraph(DropGraphQuery),
DropVector(DropVectorQuery),
DropDocument(DropDocumentQuery),
DropKv(DropKvQuery),
DropCollection(DropCollectionQuery),
Truncate(TruncateQuery),
AlterTable(AlterTableQuery),
CreateIndex(CreateIndexQuery),
DropIndex(DropIndexQuery),
CreateTimeSeries(CreateTimeSeriesQuery),
DropTimeSeries(DropTimeSeriesQuery),
CreateQueue(CreateQueueQuery),
AlterQueue(AlterQueueQuery),
DropQueue(DropQueueQuery),
CreateTree(CreateTreeQuery),
DropTree(DropTreeQuery),
Probabilistic(ProbabilisticCommand),
CreateSchema(CreateSchemaQuery),
DropSchema(DropSchemaQuery),
CreateSequence(CreateSequenceQuery),
DropSequence(DropSequenceQuery),
CopyFrom(CopyFromQuery),
CreateView(CreateViewQuery),
DropView(DropViewQuery),
RefreshMaterializedView(RefreshMaterializedViewQuery),
CreatePolicy(CreatePolicyQuery),
DropPolicy(DropPolicyQuery),
CreateServer(CreateServerQuery),
DropServer(DropServerQuery),
CreateForeignTable(CreateForeignTableQuery),
DropForeignTable(DropForeignTableQuery),
CreateMigration(CreateMigrationQuery),
ApplyMigration(ApplyMigrationQuery),
RollbackMigration(RollbackMigrationQuery),
ExplainMigration(ExplainMigrationQuery),
}Variants§
ExplainAlter(ExplainAlterQuery)
CreateTable(CreateTableQuery)
DropTable(DropTableQuery)
DropGraph(DropGraphQuery)
DropVector(DropVectorQuery)
DropDocument(DropDocumentQuery)
DropKv(DropKvQuery)
DropCollection(DropCollectionQuery)
Truncate(TruncateQuery)
AlterTable(AlterTableQuery)
CreateIndex(CreateIndexQuery)
DropIndex(DropIndexQuery)
CreateTimeSeries(CreateTimeSeriesQuery)
DropTimeSeries(DropTimeSeriesQuery)
CreateQueue(CreateQueueQuery)
AlterQueue(AlterQueueQuery)
DropQueue(DropQueueQuery)
CreateTree(CreateTreeQuery)
DropTree(DropTreeQuery)
Probabilistic(ProbabilisticCommand)
CreateSchema(CreateSchemaQuery)
DropSchema(DropSchemaQuery)
CreateSequence(CreateSequenceQuery)
DropSequence(DropSequenceQuery)
CopyFrom(CopyFromQuery)
CreateView(CreateViewQuery)
DropView(DropViewQuery)
RefreshMaterializedView(RefreshMaterializedViewQuery)
CreatePolicy(CreatePolicyQuery)
DropPolicy(DropPolicyQuery)
CreateServer(CreateServerQuery)
DropServer(DropServerQuery)
CreateForeignTable(CreateForeignTableQuery)
DropForeignTable(DropForeignTableQuery)
CreateMigration(CreateMigrationQuery)
ApplyMigration(ApplyMigrationQuery)
RollbackMigration(RollbackMigrationQuery)
ExplainMigration(ExplainMigrationQuery)
Trait Implementations§
Source§impl Clone for SqlSchemaCommand
impl Clone for SqlSchemaCommand
Source§fn clone(&self) -> SqlSchemaCommand
fn clone(&self) -> SqlSchemaCommand
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 moreAuto Trait Implementations§
impl Freeze for SqlSchemaCommand
impl RefUnwindSafe for SqlSchemaCommand
impl Send for SqlSchemaCommand
impl Sync for SqlSchemaCommand
impl Unpin for SqlSchemaCommand
impl UnsafeUnpin for SqlSchemaCommand
impl UnwindSafe for SqlSchemaCommand
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request