pub struct SourceDistribution {
pub manual: f64,
pub automated: f64,
pub recurring: f64,
pub adjustment: f64,
}Expand description
Distribution of transaction sources.
Fields§
§manual: f64Manual entries percentage
automated: f64Automated system entries
recurring: f64Recurring entries
adjustment: f64Adjustment entries
Trait Implementations§
Source§impl Clone for SourceDistribution
impl Clone for SourceDistribution
Source§fn clone(&self) -> SourceDistribution
fn clone(&self) -> SourceDistribution
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 Debug for SourceDistribution
impl Debug for SourceDistribution
Source§impl Default for SourceDistribution
impl Default for SourceDistribution
Source§impl<'de> Deserialize<'de> for SourceDistribution
impl<'de> Deserialize<'de> for SourceDistribution
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
Auto Trait Implementations§
impl Freeze for SourceDistribution
impl RefUnwindSafe for SourceDistribution
impl Send for SourceDistribution
impl Sync for SourceDistribution
impl Unpin for SourceDistribution
impl UnwindSafe for SourceDistribution
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