pub enum DataArtifactKind {
SqlMigration,
DeclarativeSqlSchema,
Prisma,
Alembic,
SqlAlchemy,
Diesel,
SqlQueryFile,
SqlxConfiguration,
LiteralQuerySource,
}Expand description
Kind of source artifact represented by a DataDocument.
Variants§
SqlMigration
Ordered SQL migration.
DeclarativeSqlSchema
Declarative SQL schema such as schema.sql.
Prisma
Prisma schema.
Alembic
Alembic Python migration.
SqlAlchemy
SQLAlchemy declarative model source.
Diesel
Diesel table! declaration source.
SqlQueryFile
Standalone SQL query consumed by source code, including SQLx query_file*! macros.
SqlxConfiguration
SQLx project configuration (sqlx.toml).
LiteralQuerySource
Focused source-language file containing literal SQL calls.
Trait Implementations§
Source§impl Clone for DataArtifactKind
impl Clone for DataArtifactKind
Source§fn clone(&self) -> DataArtifactKind
fn clone(&self) -> DataArtifactKind
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 moreimpl Copy for DataArtifactKind
Source§impl Debug for DataArtifactKind
impl Debug for DataArtifactKind
Source§impl<'de> Deserialize<'de> for DataArtifactKind
impl<'de> Deserialize<'de> for DataArtifactKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DataArtifactKind
Source§impl Hash for DataArtifactKind
impl Hash for DataArtifactKind
Source§impl Ord for DataArtifactKind
impl Ord for DataArtifactKind
Source§fn cmp(&self, other: &DataArtifactKind) -> Ordering
fn cmp(&self, other: &DataArtifactKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DataArtifactKind
impl PartialEq for DataArtifactKind
Source§impl PartialOrd for DataArtifactKind
impl PartialOrd for DataArtifactKind
Source§impl Serialize for DataArtifactKind
impl Serialize for DataArtifactKind
impl StructuralPartialEq for DataArtifactKind
Auto Trait Implementations§
impl Freeze for DataArtifactKind
impl RefUnwindSafe for DataArtifactKind
impl Send for DataArtifactKind
impl Sync for DataArtifactKind
impl Unpin for DataArtifactKind
impl UnsafeUnpin for DataArtifactKind
impl UnwindSafe for DataArtifactKind
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.