ReadableManifestBase

Trait ReadableManifestBase 

Source
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§

Source

fn is_subintent(&self) -> bool

Source

fn get_blobs<'a>(&'a self) -> impl Iterator<Item = (&'a Hash, &'a Vec<u8>)>

Source

fn get_known_object_names_ref(&self) -> ManifestObjectNamesRef<'_>

Provided Methods§

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.

Implementors§