pub struct PostgresqlObjectIdentifier {
pub schema: Option<String>,
pub table: Option<String>,
}Expand description
PostgreSQL data source object identifier.
This type is not used in any activity, and only used as part of another schema.
Fields§
§schema: Option<String>Required. The schema name.
table: Option<String>Required. The table name.
Trait Implementations§
source§impl Clone for PostgresqlObjectIdentifier
impl Clone for PostgresqlObjectIdentifier
source§fn clone(&self) -> PostgresqlObjectIdentifier
fn clone(&self) -> PostgresqlObjectIdentifier
Returns a copy 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 Debug for PostgresqlObjectIdentifier
impl Debug for PostgresqlObjectIdentifier
source§impl Default for PostgresqlObjectIdentifier
impl Default for PostgresqlObjectIdentifier
source§fn default() -> PostgresqlObjectIdentifier
fn default() -> PostgresqlObjectIdentifier
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PostgresqlObjectIdentifier
impl<'de> Deserialize<'de> for PostgresqlObjectIdentifier
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