pub trait ReadableManifestBase {
// Required methods
fn is_subintent(&self) -> bool;
fn get_blobs<'a>(&'a self) -> impl Iterator<Item = (&'a Hash, &'a Vec<u8>)>;
fn get_known_object_names_ref(&self) -> ManifestObjectNamesRef<'_>;
// Provided methods
fn get_preallocated_addresses(&self) -> &[PreAllocatedAddress] { ... }
fn get_child_subintent_hashes<'a>(&'a self) -> impl ExactSizeIterator { ... }
}Required Methods§
fn is_subintent(&self) -> bool
fn get_blobs<'a>(&'a self) -> impl Iterator<Item = (&'a Hash, &'a Vec<u8>)>
fn get_known_object_names_ref(&self) -> ManifestObjectNamesRef<'_>
Provided Methods§
fn get_preallocated_addresses(&self) -> &[PreAllocatedAddress]
fn get_child_subintent_hashes<'a>(&'a self) -> impl ExactSizeIterator
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.