pub struct GetUserTablesSqlSyncTaskOutput {
pub databases_to_source_tables: Option<String>,
pub databases_to_target_tables: Option<String>,
pub table_validation_errors: Option<String>,
pub validation_errors: Vec<ReportableException>,
}
Expand description
Output of the task that collects user tables for the given list of databases
Fields§
§databases_to_source_tables: Option<String>
Mapping from database name to list of source tables
databases_to_target_tables: Option<String>
Mapping from database name to list of target tables
table_validation_errors: Option<String>
Mapping from database name to list of validation errors
validation_errors: Vec<ReportableException>
Validation errors
Implementations§
Trait Implementations§
Source§impl Clone for GetUserTablesSqlSyncTaskOutput
impl Clone for GetUserTablesSqlSyncTaskOutput
Source§fn clone(&self) -> GetUserTablesSqlSyncTaskOutput
fn clone(&self) -> GetUserTablesSqlSyncTaskOutput
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 Default for GetUserTablesSqlSyncTaskOutput
impl Default for GetUserTablesSqlSyncTaskOutput
Source§fn default() -> GetUserTablesSqlSyncTaskOutput
fn default() -> GetUserTablesSqlSyncTaskOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetUserTablesSqlSyncTaskOutput
impl<'de> Deserialize<'de> for GetUserTablesSqlSyncTaskOutput
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 GetUserTablesSqlSyncTaskOutput
impl PartialEq for GetUserTablesSqlSyncTaskOutput
Source§fn eq(&self, other: &GetUserTablesSqlSyncTaskOutput) -> bool
fn eq(&self, other: &GetUserTablesSqlSyncTaskOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetUserTablesSqlSyncTaskOutput
Auto Trait Implementations§
impl Freeze for GetUserTablesSqlSyncTaskOutput
impl RefUnwindSafe for GetUserTablesSqlSyncTaskOutput
impl Send for GetUserTablesSqlSyncTaskOutput
impl Sync for GetUserTablesSqlSyncTaskOutput
impl Unpin for GetUserTablesSqlSyncTaskOutput
impl UnwindSafe for GetUserTablesSqlSyncTaskOutput
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