pub enum DataModelError {
Show 21 variants
EmptyField {
field: &'static str,
},
InvalidToken {
field: &'static str,
value: String,
},
InvalidPageSize,
InvalidPoolSizing {
min_connections: u16,
max_connections: u16,
},
InvalidStatementTimeout,
DuplicateMigration {
owner: String,
migration_id: String,
},
EmptyProjection {
repository: String,
},
UnknownRepositoryField {
repository: String,
field: String,
},
InvalidFilterArity {
operator: FilterOperator,
expected: &'static str,
actual: usize,
},
TransactionWriteCountMismatch {
expected: usize,
actual: usize,
},
MissingMutationAssignments {
table: String,
action: MutationAction,
},
MissingMutationPredicates {
table: String,
action: MutationAction,
},
MissingConflictFields {
table: String,
},
MissingConnectionSecret,
MissingConnectionSecretEnv {
var: String,
},
UnsupportedSecretRef {
secret_ref: String,
},
UnsupportedSqlxDriver {
driver: DatabaseDriver,
},
InvalidConnectionUrl {
reason: String,
},
UnsupportedUnsignedBindValue {
value: u64,
},
Sqlx {
reason: String,
},
MissingMigrationStatements {
migration_id: String,
},
}Variants§
EmptyField
InvalidToken
InvalidPageSize
InvalidPoolSizing
InvalidStatementTimeout
DuplicateMigration
EmptyProjection
UnknownRepositoryField
InvalidFilterArity
TransactionWriteCountMismatch
MissingMutationAssignments
MissingMutationPredicates
MissingConflictFields
MissingConnectionSecret
MissingConnectionSecretEnv
UnsupportedSecretRef
UnsupportedSqlxDriver
Fields
§
driver: DatabaseDriverInvalidConnectionUrl
UnsupportedUnsignedBindValue
Sqlx
MissingMigrationStatements
Trait Implementations§
Source§impl Clone for DataModelError
impl Clone for DataModelError
Source§fn clone(&self) -> DataModelError
fn clone(&self) -> DataModelError
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 DataModelError
impl Debug for DataModelError
Source§impl Display for DataModelError
impl Display for DataModelError
Source§impl Error for DataModelError
impl Error for DataModelError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for DataModelError
impl PartialEq for DataModelError
impl Eq for DataModelError
impl StructuralPartialEq for DataModelError
Auto Trait Implementations§
impl Freeze for DataModelError
impl RefUnwindSafe for DataModelError
impl Send for DataModelError
impl Sync for DataModelError
impl Unpin for DataModelError
impl UnsafeUnpin for DataModelError
impl UnwindSafe for DataModelError
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§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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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 more