pub struct InputApplicationHeader {
pub message_type: String,
pub destination_address: String,
pub receiver_bic: String,
pub priority: String,
pub delivery_monitoring: Option<String>,
pub obsolescence_period: Option<String>,
}
Expand description
Input Application Header
Message being sent to SWIFT network.
Format: I103DDDDDDDDDDDDP[M][OOO]
(17-21 chars)
Fields§
§message_type: String
Message type (3 digits: 103, 202, 940, etc.)
destination_address: String
Destination address (12 chars: BIC + terminal + branch)
receiver_bic: String
Receiver BIC (8 chars)
priority: String
Priority (U=Urgent, N=Normal, S=System)
delivery_monitoring: Option<String>
Delivery monitoring (1, 2, 3)
obsolescence_period: Option<String>
Obsolescence period (003-999, units of 5 min)
Trait Implementations§
Source§impl Clone for InputApplicationHeader
impl Clone for InputApplicationHeader
Source§fn clone(&self) -> InputApplicationHeader
fn clone(&self) -> InputApplicationHeader
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 InputApplicationHeader
impl Debug for InputApplicationHeader
Source§impl<'de> Deserialize<'de> for InputApplicationHeader
impl<'de> Deserialize<'de> for InputApplicationHeader
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 InputApplicationHeader
impl Display for InputApplicationHeader
Source§impl PartialEq for InputApplicationHeader
impl PartialEq for InputApplicationHeader
Source§impl Serialize for InputApplicationHeader
impl Serialize for InputApplicationHeader
impl StructuralPartialEq for InputApplicationHeader
Auto Trait Implementations§
impl Freeze for InputApplicationHeader
impl RefUnwindSafe for InputApplicationHeader
impl Send for InputApplicationHeader
impl Sync for InputApplicationHeader
impl Unpin for InputApplicationHeader
impl UnwindSafe for InputApplicationHeader
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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