pub struct GetUserTablesSqlSyncTaskProperties {
pub project_task_properties: ProjectTaskProperties,
pub input: Option<GetUserTablesSqlSyncTaskInput>,
pub output: Vec<GetUserTablesSqlSyncTaskOutput>,
}
Expand description
Properties for the task that collects user tables for the given list of databases
Fields§
§project_task_properties: ProjectTaskProperties
§input: Option<GetUserTablesSqlSyncTaskInput>
Input for the task that collects user tables for the given list of databases
output: Vec<GetUserTablesSqlSyncTaskOutput>
Task output. This is ignored if submitted.
Implementations§
Source§impl GetUserTablesSqlSyncTaskProperties
impl GetUserTablesSqlSyncTaskProperties
pub fn new(project_task_properties: ProjectTaskProperties) -> Self
Trait Implementations§
Source§impl Clone for GetUserTablesSqlSyncTaskProperties
impl Clone for GetUserTablesSqlSyncTaskProperties
Source§fn clone(&self) -> GetUserTablesSqlSyncTaskProperties
fn clone(&self) -> GetUserTablesSqlSyncTaskProperties
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 GetUserTablesSqlSyncTaskProperties
impl<'de> Deserialize<'de> for GetUserTablesSqlSyncTaskProperties
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 GetUserTablesSqlSyncTaskProperties
impl PartialEq for GetUserTablesSqlSyncTaskProperties
Source§fn eq(&self, other: &GetUserTablesSqlSyncTaskProperties) -> bool
fn eq(&self, other: &GetUserTablesSqlSyncTaskProperties) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetUserTablesSqlSyncTaskProperties
Auto Trait Implementations§
impl Freeze for GetUserTablesSqlSyncTaskProperties
impl RefUnwindSafe for GetUserTablesSqlSyncTaskProperties
impl Send for GetUserTablesSqlSyncTaskProperties
impl Sync for GetUserTablesSqlSyncTaskProperties
impl Unpin for GetUserTablesSqlSyncTaskProperties
impl UnwindSafe for GetUserTablesSqlSyncTaskProperties
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