pub struct Field25P {
pub account: String,
pub bic: String,
}
Expand description
Field 25P: Account with Institution
Account identification with associated financial institution BIC code for complete account specification.
Fields§
§account: String
Account identifier
Format: 35x - Account number or identifier Combined with BIC for complete account specification
bic: String
Bank Identifier Code of account servicing institution
Format: 4!a2!a2!c[3!c] - 8 or 11 character BIC code Must be valid registered financial institution identifier
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Field25P
impl<'de> Deserialize<'de> for Field25P
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 SwiftField for Field25P
impl SwiftField for Field25P
Source§fn to_swift_string(&self) -> String
fn to_swift_string(&self) -> String
Convert field back to SWIFT string format
Source§fn format_spec() -> &'static str
fn format_spec() -> &'static str
Get field format specification
impl StructuralPartialEq for Field25P
Auto Trait Implementations§
impl Freeze for Field25P
impl RefUnwindSafe for Field25P
impl Send for Field25P
impl Sync for Field25P
impl Unpin for Field25P
impl UnwindSafe for Field25P
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more