pub struct RegionArtifactTransport {
pub schema_version: String,
pub transport_id: ArtifactTransportId,
pub artifact_kind: RegionArtifactKind,
pub artifact_id: String,
pub artifact_digest: ContentDigest,
pub from_region_id: RegionId,
pub to_region_id: RegionId,
pub from_surface: String,
pub to_surface: String,
pub replay_ref: String,
}Expand description
Transport record for an artifact crossing between compiled verification regions.
Fields§
§schema_version: String§transport_id: ArtifactTransportId§artifact_kind: RegionArtifactKind§artifact_id: String§artifact_digest: ContentDigest§from_region_id: RegionId§to_region_id: RegionId§from_surface: String§to_surface: String§replay_ref: StringImplementations§
Source§impl RegionArtifactTransport
impl RegionArtifactTransport
Sourcepub fn new(
artifact_kind: RegionArtifactKind,
artifact_id: impl Into<String>,
artifact_bytes: &[u8],
from_region_id: RegionId,
to_region_id: RegionId,
from_surface: impl Into<String>,
to_surface: impl Into<String>,
replay_ref: impl Into<String>,
) -> Self
pub fn new( artifact_kind: RegionArtifactKind, artifact_id: impl Into<String>, artifact_bytes: &[u8], from_region_id: RegionId, to_region_id: RegionId, from_surface: impl Into<String>, to_surface: impl Into<String>, replay_ref: impl Into<String>, ) -> Self
Creates a transport record for an artifact crossing between compiled regions.
Trait Implementations§
Source§impl Clone for RegionArtifactTransport
impl Clone for RegionArtifactTransport
Source§fn clone(&self) -> RegionArtifactTransport
fn clone(&self) -> RegionArtifactTransport
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 RegionArtifactTransport
impl Debug for RegionArtifactTransport
Source§impl<'de> Deserialize<'de> for RegionArtifactTransport
impl<'de> Deserialize<'de> for RegionArtifactTransport
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 RegionArtifactTransport
Source§impl JsonSchema for RegionArtifactTransport
impl JsonSchema for RegionArtifactTransport
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 PartialEq for RegionArtifactTransport
impl PartialEq for RegionArtifactTransport
Source§fn eq(&self, other: &RegionArtifactTransport) -> bool
fn eq(&self, other: &RegionArtifactTransport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RegionArtifactTransport
impl Serialize for RegionArtifactTransport
impl StructuralPartialEq for RegionArtifactTransport
Auto Trait Implementations§
impl Freeze for RegionArtifactTransport
impl RefUnwindSafe for RegionArtifactTransport
impl Send for RegionArtifactTransport
impl Sync for RegionArtifactTransport
impl Unpin for RegionArtifactTransport
impl UnsafeUnpin for RegionArtifactTransport
impl UnwindSafe for RegionArtifactTransport
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