pub struct ImportBootstrapReport {
pub namespace: String,
pub forge_bundle_count: usize,
pub imported_bundle_ids: Vec<String>,
pub export_receipts: Vec<ExportReceipt>,
}Fields§
§namespace: String§forge_bundle_count: usize§imported_bundle_ids: Vec<String>§export_receipts: Vec<ExportReceipt>claim_ledger::ExportReceipt per imported bundle, in import order.
None when the governance feature is disabled.
Trait Implementations§
Source§impl Clone for ImportBootstrapReport
impl Clone for ImportBootstrapReport
Source§fn clone(&self) -> ImportBootstrapReport
fn clone(&self) -> ImportBootstrapReport
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 Debug for ImportBootstrapReport
impl Debug for ImportBootstrapReport
Source§impl<'de> Deserialize<'de> for ImportBootstrapReport
impl<'de> Deserialize<'de> for ImportBootstrapReport
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
Auto Trait Implementations§
impl Freeze for ImportBootstrapReport
impl RefUnwindSafe for ImportBootstrapReport
impl Send for ImportBootstrapReport
impl Sync for ImportBootstrapReport
impl Unpin for ImportBootstrapReport
impl UnsafeUnpin for ImportBootstrapReport
impl UnwindSafe for ImportBootstrapReport
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