pub struct KustoClusterDataSetMappingProperties {
pub data_set_id: String,
pub data_set_mapping_status: Option<DataSetMappingStatus>,
pub kusto_cluster_resource_id: String,
pub location: Option<String>,
pub provisioning_state: Option<ProvisioningState>,
}
Expand description
Properties of the Kusto cluster data set mapping
Fields§
§data_set_id: String
The id of the source data set.
data_set_mapping_status: Option<DataSetMappingStatus>
Gets the status of the data set mapping.
kusto_cluster_resource_id: String
Resource id of the sink kusto cluster.
location: Option<String>
Location of the sink kusto cluster.
provisioning_state: Option<ProvisioningState>
Provisioning state of the data set mapping.
Implementations§
Trait Implementations§
Source§impl Clone for KustoClusterDataSetMappingProperties
impl Clone for KustoClusterDataSetMappingProperties
Source§fn clone(&self) -> KustoClusterDataSetMappingProperties
fn clone(&self) -> KustoClusterDataSetMappingProperties
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 KustoClusterDataSetMappingProperties
impl<'de> Deserialize<'de> for KustoClusterDataSetMappingProperties
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 KustoClusterDataSetMappingProperties
impl PartialEq for KustoClusterDataSetMappingProperties
Source§fn eq(&self, other: &KustoClusterDataSetMappingProperties) -> bool
fn eq(&self, other: &KustoClusterDataSetMappingProperties) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for KustoClusterDataSetMappingProperties
Auto Trait Implementations§
impl Freeze for KustoClusterDataSetMappingProperties
impl RefUnwindSafe for KustoClusterDataSetMappingProperties
impl Send for KustoClusterDataSetMappingProperties
impl Sync for KustoClusterDataSetMappingProperties
impl Unpin for KustoClusterDataSetMappingProperties
impl UnwindSafe for KustoClusterDataSetMappingProperties
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