pub struct CraLoanRegisterApplication {
pub application_date: Option<NaiveDate>,
pub application_id: Option<String>,
}Expand description
Contains loan application data to register.
Fields§
§application_date: Option<NaiveDate>The date the user applied for the loan. The date should be in ISO 8601 format (YYYY-MM-DD).
application_id: Option<String>A unique identifier for the loan application.
Personally identifiable information, such as an email address or phone number, should not be used in the application_id.
Trait Implementations§
Source§impl Clone for CraLoanRegisterApplication
impl Clone for CraLoanRegisterApplication
Source§fn clone(&self) -> CraLoanRegisterApplication
fn clone(&self) -> CraLoanRegisterApplication
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 CraLoanRegisterApplication
impl Debug for CraLoanRegisterApplication
Source§impl Default for CraLoanRegisterApplication
impl Default for CraLoanRegisterApplication
Source§fn default() -> CraLoanRegisterApplication
fn default() -> CraLoanRegisterApplication
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CraLoanRegisterApplication
impl<'de> Deserialize<'de> for CraLoanRegisterApplication
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 Display for CraLoanRegisterApplication
impl Display for CraLoanRegisterApplication
Auto Trait Implementations§
impl Freeze for CraLoanRegisterApplication
impl RefUnwindSafe for CraLoanRegisterApplication
impl Send for CraLoanRegisterApplication
impl Sync for CraLoanRegisterApplication
impl Unpin for CraLoanRegisterApplication
impl UnwindSafe for CraLoanRegisterApplication
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