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