pub struct DatasetSemanticsV1 {
pub defaults: DatasetDefaults,
pub paths: Vec<PathConfigEntry>,
pub files: FileIdentityConfig,
pub correspondence: CorrespondenceConfig,
pub reduced_precision: ReducedPrecisionConfig,
}Expand description
SDK-owned dataset semantics section shared by plugins.
Hosts pass this through unchanged; plugins deserialize the parts they understand. The schema is intentionally conservative in v1.
Fields§
§defaults: DatasetDefaults§paths: Vec<PathConfigEntry>§files: FileIdentityConfig§correspondence: CorrespondenceConfig§reduced_precision: ReducedPrecisionConfigTrait Implementations§
Source§impl Clone for DatasetSemanticsV1
impl Clone for DatasetSemanticsV1
Source§fn clone(&self) -> DatasetSemanticsV1
fn clone(&self) -> DatasetSemanticsV1
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 DatasetSemanticsV1
impl Debug for DatasetSemanticsV1
Source§impl Default for DatasetSemanticsV1
impl Default for DatasetSemanticsV1
Source§fn default() -> DatasetSemanticsV1
fn default() -> DatasetSemanticsV1
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatasetSemanticsV1
impl<'de> Deserialize<'de> for DatasetSemanticsV1
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 DatasetSemanticsV1
impl RefUnwindSafe for DatasetSemanticsV1
impl Send for DatasetSemanticsV1
impl Sync for DatasetSemanticsV1
impl Unpin for DatasetSemanticsV1
impl UnsafeUnpin for DatasetSemanticsV1
impl UnwindSafe for DatasetSemanticsV1
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