pub struct RootComponentChildInstallEvidence {
pub raw_module_hash: [u8; 32],
pub chunk_hashes: Vec<Vec<u8>>,
pub binding: ComponentChildBinding,
}Expand description
RootComponentChildInstallEvidence
Exact child module and immutable retained binding frozen before installation.
Fields§
§raw_module_hash: [u8; 32]§chunk_hashes: Vec<Vec<u8>>§binding: ComponentChildBindingTrait Implementations§
Source§impl Clone for RootComponentChildInstallEvidence
impl Clone for RootComponentChildInstallEvidence
Source§fn clone(&self) -> RootComponentChildInstallEvidence
fn clone(&self) -> RootComponentChildInstallEvidence
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<'de> Deserialize<'de> for RootComponentChildInstallEvidence
impl<'de> Deserialize<'de> for RootComponentChildInstallEvidence
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 RootComponentChildInstallEvidence
impl StructuralPartialEq for RootComponentChildInstallEvidence
Auto Trait Implementations§
impl Freeze for RootComponentChildInstallEvidence
impl RefUnwindSafe for RootComponentChildInstallEvidence
impl Send for RootComponentChildInstallEvidence
impl Sync for RootComponentChildInstallEvidence
impl Unpin for RootComponentChildInstallEvidence
impl UnsafeUnpin for RootComponentChildInstallEvidence
impl UnwindSafe for RootComponentChildInstallEvidence
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