pub struct SchemaDiff {
pub operation: DiffOperation,
pub table: String,
pub field: Option<String>,
pub index: Option<String>,
pub event: Option<String>,
pub description: String,
pub forward_sql: String,
pub backward_sql: String,
pub details: BTreeMap<String, Value>,
}Expand description
Represents a difference between two schema versions.
§Examples
use surql::migration::{DiffOperation, SchemaDiff};
let diff = SchemaDiff {
operation: DiffOperation::AddTable,
table: "user".into(),
field: None,
index: None,
event: None,
description: "Add user table".into(),
forward_sql: "DEFINE TABLE user SCHEMAFULL;".into(),
backward_sql: "REMOVE TABLE user;".into(),
details: Default::default(),
};
assert_eq!(diff.operation, DiffOperation::AddTable);Fields§
§operation: DiffOperationThe kind of schema change.
table: StringTable name affected by the change.
field: Option<String>Field name, if the change targets a field.
index: Option<String>Index name, if the change targets an index.
event: Option<String>Event name, if the change targets an event.
description: StringHuman-readable description.
forward_sql: StringSurrealQL that applies the change (forward).
backward_sql: StringSurrealQL that reverts the change (backward).
details: BTreeMap<String, Value>Extra operation-specific details.
Trait Implementations§
Source§impl Clone for SchemaDiff
impl Clone for SchemaDiff
Source§fn clone(&self) -> SchemaDiff
fn clone(&self) -> SchemaDiff
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 SchemaDiff
impl Debug for SchemaDiff
Source§impl<'de> Deserialize<'de> for SchemaDiff
impl<'de> Deserialize<'de> for SchemaDiff
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
Source§impl PartialEq for SchemaDiff
impl PartialEq for SchemaDiff
Source§impl Serialize for SchemaDiff
impl Serialize for SchemaDiff
impl Eq for SchemaDiff
impl StructuralPartialEq for SchemaDiff
Auto Trait Implementations§
impl Freeze for SchemaDiff
impl RefUnwindSafe for SchemaDiff
impl Send for SchemaDiff
impl Sync for SchemaDiff
impl Unpin for SchemaDiff
impl UnsafeUnpin for SchemaDiff
impl UnwindSafe for SchemaDiff
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<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§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.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