pub struct SourceTransactionPaperCheckData {
pub available_at: Option<String>,
pub invoices: Option<String>,
}Fields§
§available_at: Option<String>Time at which the deposited funds will be available for use. Measured in seconds since the Unix epoch.
invoices: Option<String>Comma-separated list of invoice IDs associated with the paper check.
Trait Implementations§
Source§impl Clone for SourceTransactionPaperCheckData
impl Clone for SourceTransactionPaperCheckData
Source§fn clone(&self) -> SourceTransactionPaperCheckData
fn clone(&self) -> SourceTransactionPaperCheckData
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 moreSource§impl FromValueOpt for SourceTransactionPaperCheckData
impl FromValueOpt for SourceTransactionPaperCheckData
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for SourceTransactionPaperCheckData
impl PartialEq for SourceTransactionPaperCheckData
Source§fn eq(&self, other: &SourceTransactionPaperCheckData) -> bool
fn eq(&self, other: &SourceTransactionPaperCheckData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SourceTransactionPaperCheckData
impl StructuralPartialEq for SourceTransactionPaperCheckData
Auto Trait Implementations§
impl Freeze for SourceTransactionPaperCheckData
impl RefUnwindSafe for SourceTransactionPaperCheckData
impl Send for SourceTransactionPaperCheckData
impl Sync for SourceTransactionPaperCheckData
impl Unpin for SourceTransactionPaperCheckData
impl UnsafeUnpin for SourceTransactionPaperCheckData
impl UnwindSafe for SourceTransactionPaperCheckData
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