pub struct ProvisionReport {
pub granted: Vec<String>,
pub skipped: Vec<(String, String)>,
}Expand description
The per-member outcome of provision_org_members. Best-effort: granted
are the account ids that received a wrap this round; skipped pairs every
other account id with WHY it got none (malformed pubkey, a low-order /
non-contributory key that wrap_org_key rejects, or a publish failure). A
non-empty skipped is NOT a batch abort — the caller reports both.
Fields§
§granted: Vec<String>§skipped: Vec<(String, String)>Trait Implementations§
Source§impl Clone for ProvisionReport
impl Clone for ProvisionReport
Source§fn clone(&self) -> ProvisionReport
fn clone(&self) -> ProvisionReport
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 ProvisionReport
impl Debug for ProvisionReport
Source§impl Default for ProvisionReport
impl Default for ProvisionReport
Source§fn default() -> ProvisionReport
fn default() -> ProvisionReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProvisionReport
impl RefUnwindSafe for ProvisionReport
impl Send for ProvisionReport
impl Sync for ProvisionReport
impl Unpin for ProvisionReport
impl UnsafeUnpin for ProvisionReport
impl UnwindSafe for ProvisionReport
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