pub struct CanicInfrastructureArtifactInput<'a> {
pub role: CanicInfrastructureRole,
pub package: &'a str,
pub release_build_id: ReleaseBuildId,
pub wasm_relative_path: &'a str,
pub wasm: &'a [u8],
pub wasm_gz_relative_path: &'a str,
pub wasm_gz: &'a [u8],
}Expand description
CanicInfrastructureArtifactInput
One current-build artifact supplied to the manifest compiler.
Fields§
§role: CanicInfrastructureRole§package: &'a str§release_build_id: ReleaseBuildId§wasm_relative_path: &'a str§wasm: &'a [u8]§wasm_gz_relative_path: &'a str§wasm_gz: &'a [u8]Trait Implementations§
Source§impl<'a> Clone for CanicInfrastructureArtifactInput<'a>
impl<'a> Clone for CanicInfrastructureArtifactInput<'a>
Source§fn clone(&self) -> CanicInfrastructureArtifactInput<'a>
fn clone(&self) -> CanicInfrastructureArtifactInput<'a>
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 moreimpl<'a> Copy for CanicInfrastructureArtifactInput<'a>
Auto Trait Implementations§
impl<'a> Freeze for CanicInfrastructureArtifactInput<'a>
impl<'a> RefUnwindSafe for CanicInfrastructureArtifactInput<'a>
impl<'a> Send for CanicInfrastructureArtifactInput<'a>
impl<'a> Sync for CanicInfrastructureArtifactInput<'a>
impl<'a> Unpin for CanicInfrastructureArtifactInput<'a>
impl<'a> UnsafeUnpin for CanicInfrastructureArtifactInput<'a>
impl<'a> UnwindSafe for CanicInfrastructureArtifactInput<'a>
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