pub struct ClearingInfo {
pub clearing_document: String,
pub clearing_date: NaiveDate,
pub clearing_amount: Decimal,
pub clearing_type: ClearingType,
}Expand description
Clearing information for a subledger document.
Fields§
§clearing_document: StringDocument that cleared this item.
clearing_date: NaiveDateDate of clearing.
clearing_amount: DecimalAmount cleared.
clearing_type: ClearingTypeClearing type.
Trait Implementations§
Source§impl Clone for ClearingInfo
impl Clone for ClearingInfo
Source§fn clone(&self) -> ClearingInfo
fn clone(&self) -> ClearingInfo
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 ClearingInfo
impl Debug for ClearingInfo
Source§impl<'de> Deserialize<'de> for ClearingInfo
impl<'de> Deserialize<'de> for ClearingInfo
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 ClearingInfo
impl RefUnwindSafe for ClearingInfo
impl Send for ClearingInfo
impl Sync for ClearingInfo
impl Unpin for ClearingInfo
impl UnwindSafe for ClearingInfo
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