pub struct ForgeExportMeta {
pub authority: ExportAuthority,
pub run_id: Option<String>,
pub direct_write: bool,
pub comparability_snapshot_version: Option<String>,
pub exported_at: String,
}Expand description
Metadata about a Forge export operation.
Fields§
Authority that produced the export.
run_id: Option<String>Verification run identifier.
direct_write: boolWhether direct-write was used (exceptional, auditable, disabled by default).
comparability_snapshot_version: Option<String>Comparability snapshot version at time of export.
exported_at: StringWhen the export was produced.
Trait Implementations§
Source§impl Clone for ForgeExportMeta
impl Clone for ForgeExportMeta
Source§fn clone(&self) -> ForgeExportMeta
fn clone(&self) -> ForgeExportMeta
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 ForgeExportMeta
impl Debug for ForgeExportMeta
Source§impl<'de> Deserialize<'de> for ForgeExportMeta
impl<'de> Deserialize<'de> for ForgeExportMeta
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 JsonSchema for ForgeExportMeta
impl JsonSchema for ForgeExportMeta
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
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 is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ForgeExportMeta
impl RefUnwindSafe for ForgeExportMeta
impl Send for ForgeExportMeta
impl Sync for ForgeExportMeta
impl Unpin for ForgeExportMeta
impl UnsafeUnpin for ForgeExportMeta
impl UnwindSafe for ForgeExportMeta
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