pub struct MigrateSchemaSqlTaskOutputError {
pub migrate_schema_sql_server_sql_db_task_output: MigrateSchemaSqlServerSqlDbTaskOutput,
pub error: Option<ReportableException>,
}
Fields§
§migrate_schema_sql_server_sql_db_task_output: MigrateSchemaSqlServerSqlDbTaskOutput
§error: Option<ReportableException>
Exception object for all custom exceptions
Implementations§
Source§impl MigrateSchemaSqlTaskOutputError
impl MigrateSchemaSqlTaskOutputError
pub fn new( migrate_schema_sql_server_sql_db_task_output: MigrateSchemaSqlServerSqlDbTaskOutput, ) -> Self
Trait Implementations§
Source§impl Clone for MigrateSchemaSqlTaskOutputError
impl Clone for MigrateSchemaSqlTaskOutputError
Source§fn clone(&self) -> MigrateSchemaSqlTaskOutputError
fn clone(&self) -> MigrateSchemaSqlTaskOutputError
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<'de> Deserialize<'de> for MigrateSchemaSqlTaskOutputError
impl<'de> Deserialize<'de> for MigrateSchemaSqlTaskOutputError
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 MigrateSchemaSqlTaskOutputError
impl PartialEq for MigrateSchemaSqlTaskOutputError
Source§fn eq(&self, other: &MigrateSchemaSqlTaskOutputError) -> bool
fn eq(&self, other: &MigrateSchemaSqlTaskOutputError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MigrateSchemaSqlTaskOutputError
Auto Trait Implementations§
impl Freeze for MigrateSchemaSqlTaskOutputError
impl RefUnwindSafe for MigrateSchemaSqlTaskOutputError
impl Send for MigrateSchemaSqlTaskOutputError
impl Sync for MigrateSchemaSqlTaskOutputError
impl Unpin for MigrateSchemaSqlTaskOutputError
impl UnwindSafe for MigrateSchemaSqlTaskOutputError
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