pub struct GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference {
pub edge_table_columns: Option<Vec<String>>,
pub node_alias: Option<String>,
pub node_table_columns: Option<Vec<String>>,
}Expand description
A reference to a source or destination node in a graph edge.
This type is not used in any activity, and only used as part of another schema.
Fields§
§edge_table_columns: Option<Vec<String>>Required. The referencing columns in the edge table. The size of edge_table_columns must be equal to the size of node_table_columns.
node_alias: Option<String>Required. The reference to the source/destination node of the edge. This name must be a valid alias of a node element in the same graph. Example, Person node can be a source node name of an edge element Person_to_Address.
node_table_columns: Option<Vec<String>>Required. The referenced columns of the source node table.
Trait Implementations§
Source§impl Clone for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
impl Clone for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
Source§fn clone(
&self,
) -> GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
fn clone( &self, ) -> GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
impl Default for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
Source§fn default() -> GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
fn default() -> GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
impl<'de> Deserialize<'de> for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
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
impl Part for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
Auto Trait Implementations§
impl Freeze for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
impl RefUnwindSafe for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
impl Send for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
impl Sync for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
impl Unpin for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
impl UnsafeUnpin for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
impl UnwindSafe for GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
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