pub struct Field59Basic {
pub beneficiary_customer: Vec<String>,
}
Expand description
Field 59: Beneficiary Customer (Basic)
Format: 4*35x (up to 4 lines of 35 characters each)
Fields§
§beneficiary_customer: Vec<String>
Beneficiary customer information (up to 4 lines)
Implementations§
Source§impl Field59Basic
impl Field59Basic
Sourcepub fn new(beneficiary_customer: Vec<String>) -> Result<Self, ParseError>
pub fn new(beneficiary_customer: Vec<String>) -> Result<Self, ParseError>
Create a new Field59Basic with validation
Sourcepub fn beneficiary_customer(&self) -> &[String]
pub fn beneficiary_customer(&self) -> &[String]
Get the beneficiary customer lines
Trait Implementations§
Source§impl Clone for Field59Basic
impl Clone for Field59Basic
Source§fn clone(&self) -> Field59Basic
fn clone(&self) -> Field59Basic
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 Field59Basic
impl Debug for Field59Basic
Source§impl<'de> Deserialize<'de> for Field59Basic
impl<'de> Deserialize<'de> for Field59Basic
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 PartialEq for Field59Basic
impl PartialEq for Field59Basic
Source§impl Serialize for Field59Basic
impl Serialize for Field59Basic
Source§impl SwiftField for Field59Basic
impl SwiftField for Field59Basic
Source§fn parse(content: &str) -> Result<Self, ParseError>
fn parse(content: &str) -> Result<Self, ParseError>
Parse field value from string representation
Source§fn to_swift_string(&self) -> String
fn to_swift_string(&self) -> String
Convert field back to SWIFT string format
Source§fn validate(&self) -> ValidationResult
fn validate(&self) -> ValidationResult
Validate field according to SWIFT format rules
Source§fn format_spec() -> &'static str
fn format_spec() -> &'static str
Get field format specification
impl Eq for Field59Basic
impl StructuralPartialEq for Field59Basic
Auto Trait Implementations§
impl Freeze for Field59Basic
impl RefUnwindSafe for Field59Basic
impl Send for Field59Basic
impl Sync for Field59Basic
impl Unpin for Field59Basic
impl UnwindSafe for Field59Basic
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