pub struct Db {
pub direction: DbDirection,
pub provider: Option<String>,
pub rls_tests: Option<String>,
}Expand description
[db] (spec §5.3, §10): drift-gate configuration. direction names
the source of truth — “contract” (generated DDL is desired state) or
“database” (introspected schema is; contracts must follow).
Fields§
§direction: DbDirection§provider: Option<String>§rls_tests: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Db
impl<'de> Deserialize<'de> for Db
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
Auto Trait Implementations§
impl Freeze for Db
impl RefUnwindSafe for Db
impl Send for Db
impl Sync for Db
impl Unpin for Db
impl UnsafeUnpin for Db
impl UnwindSafe for Db
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