pub struct ElectionLine {
pub recorded: TaxDate,
pub effective_from: TaxDate,
pub method: LotMethod,
pub wallet: Option<WalletId>,
pub note: &'static str,
}Expand description
One entry in the MethodElection standing-order history reported by verify.
Fields§
§recorded: TaxDate§effective_from: TaxDate§method: LotMethod§wallet: Option<WalletId>None = a VAULT-WIDE (global) election; Some(w) = scoped to that exchange account only.
note: &'static str“in force” | “voided” | “backdated/ignored”
Trait Implementations§
Source§impl Clone for ElectionLine
impl Clone for ElectionLine
Source§fn clone(&self) -> ElectionLine
fn clone(&self) -> ElectionLine
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 moreAuto Trait Implementations§
impl Freeze for ElectionLine
impl RefUnwindSafe for ElectionLine
impl Send for ElectionLine
impl Sync for ElectionLine
impl Unpin for ElectionLine
impl UnsafeUnpin for ElectionLine
impl UnwindSafe for ElectionLine
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