pub struct ContractNativeDeckSummary {
pub cards: u64,
pub complete_cards: u64,
pub partial_cards: u64,
pub diagnostics: Vec<String>,
}Expand description
Contract deck totals cached for the contract-native Atelier backend.
Fields§
§cards: u64Number of cards selected for the task-scoped deck.
complete_cards: u64Number of cards that carry complete callable contract data.
partial_cards: u64Number of partial cards preserved with diagnostics.
diagnostics: Vec<String>Non-fatal deck diagnostics.
Trait Implementations§
Source§impl Clone for ContractNativeDeckSummary
impl Clone for ContractNativeDeckSummary
Source§fn clone(&self) -> ContractNativeDeckSummary
fn clone(&self) -> ContractNativeDeckSummary
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 ContractNativeDeckSummary
impl Debug for ContractNativeDeckSummary
impl Eq for ContractNativeDeckSummary
impl StructuralPartialEq for ContractNativeDeckSummary
Auto Trait Implementations§
impl Freeze for ContractNativeDeckSummary
impl RefUnwindSafe for ContractNativeDeckSummary
impl Send for ContractNativeDeckSummary
impl Sync for ContractNativeDeckSummary
impl Unpin for ContractNativeDeckSummary
impl UnsafeUnpin for ContractNativeDeckSummary
impl UnwindSafe for ContractNativeDeckSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.