pub struct AccountRequirementsAlternative {
pub alternative_fields_due: Vec<String>,
pub original_fields_due: Vec<String>,
}
Fields§
§alternative_fields_due: Vec<String>
Fields that can be provided to satisfy all fields in original_fields_due
.
original_fields_due: Vec<String>
Fields that are due and can be satisfied by providing all fields in alternative_fields_due
.
Trait Implementations§
Source§impl Clone for AccountRequirementsAlternative
impl Clone for AccountRequirementsAlternative
Source§fn clone(&self) -> AccountRequirementsAlternative
fn clone(&self) -> AccountRequirementsAlternative
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for AccountRequirementsAlternative
impl RefUnwindSafe for AccountRequirementsAlternative
impl Send for AccountRequirementsAlternative
impl Sync for AccountRequirementsAlternative
impl Unpin for AccountRequirementsAlternative
impl UnwindSafe for AccountRequirementsAlternative
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