pub struct ServicerAddressData {
pub city: Option<String>,
pub country: Option<String>,
pub postal_code: Option<String>,
pub region: Option<String>,
pub street: Option<String>,
}
Expand description
The address of the student loan servicer. This is generally the remittance address to which payments should be sent.
Fields§
§city: Option<String>
The full city name
country: Option<String>
The ISO 3166-1 alpha-2 country code
postal_code: Option<String>
The postal code
region: Option<String>
The region or state
Example: "NC"
street: Option<String>
The full street address
Example: "564 Main Street, APT 15"
Trait Implementations§
Source§impl Clone for ServicerAddressData
impl Clone for ServicerAddressData
Source§fn clone(&self) -> ServicerAddressData
fn clone(&self) -> ServicerAddressData
Returns a copy 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 ServicerAddressData
impl Debug for ServicerAddressData
Source§impl Default for ServicerAddressData
impl Default for ServicerAddressData
Source§fn default() -> ServicerAddressData
fn default() -> ServicerAddressData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServicerAddressData
impl<'de> Deserialize<'de> for ServicerAddressData
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 ServicerAddressData
impl Display for ServicerAddressData
Auto Trait Implementations§
impl Freeze for ServicerAddressData
impl RefUnwindSafe for ServicerAddressData
impl Send for ServicerAddressData
impl Sync for ServicerAddressData
impl Unpin for ServicerAddressData
impl UnwindSafe for ServicerAddressData
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