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<ForgeExportMeta, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ForgeExportMeta, <__D as Deserializer<'de>>::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 moreSource§impl Serialize for ForgeExportMeta
impl Serialize for ForgeExportMeta
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto 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