pub struct DecodedSegment {
pub segment_type: String,
pub segment_number: u16,
pub segment_version: u16,
pub segment_reference: Option<u16>,
pub degs: Vec<Vec<String>>,
}Expand description
A decoded FinTS segment ready for display.
Fields§
§segment_type: String§segment_number: u16§segment_version: u16§segment_reference: Option<u16>§degs: Vec<Vec<String>>DEGs → DEs as display strings.
Auto Trait Implementations§
impl Freeze for DecodedSegment
impl RefUnwindSafe for DecodedSegment
impl Send for DecodedSegment
impl Sync for DecodedSegment
impl Unpin for DecodedSegment
impl UnsafeUnpin for DecodedSegment
impl UnwindSafe for DecodedSegment
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