pub struct BenchDatasetCatalogInput {
pub upstream_identity: String,
pub url: String,
pub sha256: String,
pub source_format: String,
pub license: String,
pub cache_path: PathBuf,
pub cache_state: BenchDatasetCacheState,
pub materialization_identity: String,
}Expand description
Immutable release-catalog facts resolved by the Rust control plane.
Fields§
§upstream_identity: String§url: String§sha256: String§source_format: String§license: String§cache_path: PathBuf§cache_state: BenchDatasetCacheState§materialization_identity: StringTrait Implementations§
Source§impl Clone for BenchDatasetCatalogInput
impl Clone for BenchDatasetCatalogInput
Source§fn clone(&self) -> BenchDatasetCatalogInput
fn clone(&self) -> BenchDatasetCatalogInput
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 BenchDatasetCatalogInput
impl Debug for BenchDatasetCatalogInput
Source§impl<'de> Deserialize<'de> for BenchDatasetCatalogInput
impl<'de> Deserialize<'de> for BenchDatasetCatalogInput
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 BenchDatasetCatalogInput
Source§impl JsonSchema for BenchDatasetCatalogInput
impl JsonSchema for BenchDatasetCatalogInput
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for BenchDatasetCatalogInput
impl PartialEq for BenchDatasetCatalogInput
Source§impl Serialize for BenchDatasetCatalogInput
impl Serialize for BenchDatasetCatalogInput
impl StructuralPartialEq for BenchDatasetCatalogInput
Auto Trait Implementations§
impl Freeze for BenchDatasetCatalogInput
impl RefUnwindSafe for BenchDatasetCatalogInput
impl Send for BenchDatasetCatalogInput
impl Sync for BenchDatasetCatalogInput
impl Unpin for BenchDatasetCatalogInput
impl UnsafeUnpin for BenchDatasetCatalogInput
impl UnwindSafe for BenchDatasetCatalogInput
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