pub struct DeltaReportMetricsRequest {
pub table_id: String,
pub report: Option<DeltaReport>,
}Expand description
Request to report commit metrics (telemetry) for a table.
Fields§
§table_id: StringTable UUID. Must match the table identified by the path.
report: Option<DeltaReport>Trait Implementations§
Source§impl Clone for DeltaReportMetricsRequest
impl Clone for DeltaReportMetricsRequest
Source§fn clone(&self) -> DeltaReportMetricsRequest
fn clone(&self) -> DeltaReportMetricsRequest
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 Debug for DeltaReportMetricsRequest
impl Debug for DeltaReportMetricsRequest
Source§impl<'de> Deserialize<'de> for DeltaReportMetricsRequest
impl<'de> Deserialize<'de> for DeltaReportMetricsRequest
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 Eq for DeltaReportMetricsRequest
impl StructuralPartialEq for DeltaReportMetricsRequest
Auto Trait Implementations§
impl Freeze for DeltaReportMetricsRequest
impl RefUnwindSafe for DeltaReportMetricsRequest
impl Send for DeltaReportMetricsRequest
impl Sync for DeltaReportMetricsRequest
impl Unpin for DeltaReportMetricsRequest
impl UnsafeUnpin for DeltaReportMetricsRequest
impl UnwindSafe for DeltaReportMetricsRequest
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