pub struct Field28D {
pub index: u32,
pub total: u32,
}
Expand description
Field 28D: Message Index/Total
Message indexing for batch operations enabling completeness verification and proper sequencing of related messages.
Fields§
§index: u32
Message index (current position)
Format: 5n - Current message number in sequence (1-99999) Must not exceed total count, enables ordering verification
total: u32
Total message count
Format: /5n - Complete count of messages in batch (1-99999) Enables receiver to verify all messages received
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Field28D
impl<'de> Deserialize<'de> for Field28D
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 Field28D
impl SwiftField for Field28D
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 Field28D
Auto Trait Implementations§
impl Freeze for Field28D
impl RefUnwindSafe for Field28D
impl Send for Field28D
impl Sync for Field28D
impl Unpin for Field28D
impl UnwindSafe for Field28D
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