pub struct EmbeddedRootBootstrapEntry {
pub role: &'static str,
pub wasm_module: &'static [u8],
pub artifact_path: &'static str,
pub embedded_artifact_path: &'static str,
pub artifact_kind: &'static str,
pub artifact_size_bytes: u64,
pub artifact_sha256_hex: &'static str,
pub decompressed_size_bytes: Option<u64>,
pub decompressed_sha256_hex: Option<&'static str>,
}Expand description
EmbeddedRootBootstrapEntry
Fields§
§role: &'static str§wasm_module: &'static [u8]§artifact_path: &'static str§embedded_artifact_path: &'static str§artifact_kind: &'static str§artifact_size_bytes: u64§artifact_sha256_hex: &'static str§decompressed_size_bytes: Option<u64>§decompressed_sha256_hex: Option<&'static str>Trait Implementations§
Source§impl Clone for EmbeddedRootBootstrapEntry
impl Clone for EmbeddedRootBootstrapEntry
Source§fn clone(&self) -> EmbeddedRootBootstrapEntry
fn clone(&self) -> EmbeddedRootBootstrapEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 EmbeddedRootBootstrapEntry
impl Debug for EmbeddedRootBootstrapEntry
impl Copy for EmbeddedRootBootstrapEntry
impl Eq for EmbeddedRootBootstrapEntry
impl StructuralPartialEq for EmbeddedRootBootstrapEntry
Auto Trait Implementations§
impl Freeze for EmbeddedRootBootstrapEntry
impl RefUnwindSafe for EmbeddedRootBootstrapEntry
impl Send for EmbeddedRootBootstrapEntry
impl Sync for EmbeddedRootBootstrapEntry
impl Unpin for EmbeddedRootBootstrapEntry
impl UnsafeUnpin for EmbeddedRootBootstrapEntry
impl UnwindSafe for EmbeddedRootBootstrapEntry
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