pub struct BIC {
pub raw: String,
pub bank_code: Option<String>,
pub country_code: Option<String>,
pub location_code: Option<String>,
pub branch_code: Option<String>,
}Fields§
§raw: String§bank_code: Option<String>§country_code: Option<String>§location_code: Option<String>§branch_code: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for BIC
impl<'de> Deserialize<'de> for BIC
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
impl StructuralPartialEq for BIC
Auto Trait Implementations§
impl Freeze for BIC
impl RefUnwindSafe for BIC
impl Send for BIC
impl Sync for BIC
impl Unpin for BIC
impl UnwindSafe for BIC
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