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