pub struct LoanServicingEvent {
pub loan_amount: Option<Box<Currency>>,
pub source_business_event_type: Option<String>,
}Expand description
LoanServicingEvent : A loan advance, loan payment, or loan refund.
Fields
loan_amount: Option<Box<Currency>>source_business_event_type: Option<String>The type of event. Possible values: * LoanAdvance * LoanPayment * LoanRefund
Implementations
sourceimpl LoanServicingEvent
impl LoanServicingEvent
sourcepub fn new() -> LoanServicingEvent
pub fn new() -> LoanServicingEvent
A loan advance, loan payment, or loan refund.
Trait Implementations
sourceimpl Clone for LoanServicingEvent
impl Clone for LoanServicingEvent
sourcefn clone(&self) -> LoanServicingEvent
fn clone(&self) -> LoanServicingEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for LoanServicingEvent
impl Debug for LoanServicingEvent
sourceimpl Default for LoanServicingEvent
impl Default for LoanServicingEvent
sourcefn default() -> LoanServicingEvent
fn default() -> LoanServicingEvent
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for LoanServicingEvent
impl<'de> Deserialize<'de> for LoanServicingEvent
sourcefn 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
sourceimpl PartialEq<LoanServicingEvent> for LoanServicingEvent
impl PartialEq<LoanServicingEvent> for LoanServicingEvent
sourcefn eq(&self, other: &LoanServicingEvent) -> bool
fn eq(&self, other: &LoanServicingEvent) -> bool
sourceimpl Serialize for LoanServicingEvent
impl Serialize for LoanServicingEvent
impl StructuralPartialEq for LoanServicingEvent
Auto Trait Implementations
impl RefUnwindSafe for LoanServicingEvent
impl Send for LoanServicingEvent
impl Sync for LoanServicingEvent
impl Unpin for LoanServicingEvent
impl UnwindSafe for LoanServicingEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more