pub struct DecodedMessage {
pub segments: Vec<DecodedSegment>,
pub global_codes: Vec<(String, String)>,
pub segment_codes: Vec<(String, String)>,
pub raw_bytes: usize,
}Expand description
A decoded FinTS message ready for human display.
Fields§
§segments: Vec<DecodedSegment>§global_codes: Vec<(String, String)>Global-level response codes: (code, text).
segment_codes: Vec<(String, String)>Segment-level response codes: (code, text).
raw_bytes: usizeAuto Trait Implementations§
impl Freeze for DecodedMessage
impl RefUnwindSafe for DecodedMessage
impl Send for DecodedMessage
impl Sync for DecodedMessage
impl Unpin for DecodedMessage
impl UnsafeUnpin for DecodedMessage
impl UnwindSafe for DecodedMessage
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