pub struct SmartTransferStatistic {
pub inflow: SmartTransferStatisticInflow,
pub outflow: SmartTransferStatisticOutflow,
pub total_active_tickets: i32,
pub total_inactive_tickets: i32,
}
Expand description
SmartTransferStatistic : Smart transfers statistic
Fields§
§inflow: SmartTransferStatisticInflow
§outflow: SmartTransferStatisticOutflow
§total_active_tickets: i32
Number of total active tickets
total_inactive_tickets: i32
Number of total inactive tickets (expired, canceled, completed)
Implementations§
Source§impl SmartTransferStatistic
impl SmartTransferStatistic
Sourcepub fn new(
inflow: SmartTransferStatisticInflow,
outflow: SmartTransferStatisticOutflow,
total_active_tickets: i32,
total_inactive_tickets: i32,
) -> SmartTransferStatistic
pub fn new( inflow: SmartTransferStatisticInflow, outflow: SmartTransferStatisticOutflow, total_active_tickets: i32, total_inactive_tickets: i32, ) -> SmartTransferStatistic
Smart transfers statistic
Trait Implementations§
Source§impl Clone for SmartTransferStatistic
impl Clone for SmartTransferStatistic
Source§fn clone(&self) -> SmartTransferStatistic
fn clone(&self) -> SmartTransferStatistic
Returns a copy 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 Debug for SmartTransferStatistic
impl Debug for SmartTransferStatistic
Source§impl Default for SmartTransferStatistic
impl Default for SmartTransferStatistic
Source§fn default() -> SmartTransferStatistic
fn default() -> SmartTransferStatistic
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SmartTransferStatistic
impl<'de> Deserialize<'de> for SmartTransferStatistic
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SmartTransferStatistic
impl PartialEq for SmartTransferStatistic
Source§impl Serialize for SmartTransferStatistic
impl Serialize for SmartTransferStatistic
impl StructuralPartialEq for SmartTransferStatistic
Auto Trait Implementations§
impl Freeze for SmartTransferStatistic
impl RefUnwindSafe for SmartTransferStatistic
impl Send for SmartTransferStatistic
impl Sync for SmartTransferStatistic
impl Unpin for SmartTransferStatistic
impl UnwindSafe for SmartTransferStatistic
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