pub struct OutputDatasetFacets {
pub output_statistics: Option<OutputStatisticsOutputDatasetFacet>,
pub extra: Map<String, Value>,
}Expand description
Output-only dataset facets (serialized under outputFacets).
Fields§
§output_statistics: Option<OutputStatisticsOutputDatasetFacet>Statistics about the data written to the output. Maps to the
outputStatistics spec field.
extra: Map<String, Value>Additional custom output dataset facets passed through verbatim.
Implementations§
Trait Implementations§
Source§impl Clone for OutputDatasetFacets
impl Clone for OutputDatasetFacets
Source§fn clone(&self) -> OutputDatasetFacets
fn clone(&self) -> OutputDatasetFacets
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 OutputDatasetFacets
impl Debug for OutputDatasetFacets
Source§impl Default for OutputDatasetFacets
impl Default for OutputDatasetFacets
Source§fn default() -> OutputDatasetFacets
fn default() -> OutputDatasetFacets
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputDatasetFacets
impl<'de> Deserialize<'de> for OutputDatasetFacets
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
Auto Trait Implementations§
impl Freeze for OutputDatasetFacets
impl RefUnwindSafe for OutputDatasetFacets
impl Send for OutputDatasetFacets
impl Sync for OutputDatasetFacets
impl Unpin for OutputDatasetFacets
impl UnsafeUnpin for OutputDatasetFacets
impl UnwindSafe for OutputDatasetFacets
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