pub struct LendingNameSchema {
pub first_name: Option<String>,
pub middle_name: Option<String>,
pub last_name: Option<String>,
pub suffix_name: Option<String>,
}
Fields§
§first_name: Option<String>
§middle_name: Option<String>
§last_name: Option<String>
§suffix_name: Option<String>
Trait Implementations§
Source§impl Debug for LendingNameSchema
impl Debug for LendingNameSchema
Source§impl<'de> Deserialize<'de> for LendingNameSchema
impl<'de> Deserialize<'de> for LendingNameSchema
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 LendingNameSchema
impl Display for LendingNameSchema
Auto Trait Implementations§
impl Freeze for LendingNameSchema
impl RefUnwindSafe for LendingNameSchema
impl Send for LendingNameSchema
impl Sync for LendingNameSchema
impl Unpin for LendingNameSchema
impl UnwindSafe for LendingNameSchema
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