pub struct Trailer<'a> {
pub trailer: &'a mut FieldMap,
}Expand description
Trailer is the fix41 Trailer type.
Fields§
§trailer: &'a mut FieldMapImplementations§
Source§impl Trailer<'_>
impl Trailer<'_>
Sourcepub fn set_check_sum(&mut self, v: String)
pub fn set_check_sum(&mut self, v: String)
Sets CheckSum, Tag 10.
Sourcepub fn has_check_sum(&self) -> bool
pub fn has_check_sum(&self) -> bool
Returns true if CheckSum is present, Tag 10.
Sourcepub fn set_signature(&mut self, v: String)
pub fn set_signature(&mut self, v: String)
Sets Signature, Tag 89.
Sourcepub fn has_signature(&self) -> bool
pub fn has_signature(&self) -> bool
Returns true if Signature is present, Tag 89.
Sourcepub fn set_signature_length(&mut self, v: isize)
pub fn set_signature_length(&mut self, v: isize)
Sets SignatureLength, Tag 93.
Sourcepub fn has_signature_length(&self) -> bool
pub fn has_signature_length(&self) -> bool
Returns true if SignatureLength is present, Tag 93.
Auto Trait Implementations§
impl<'a> Freeze for Trailer<'a>
impl<'a> RefUnwindSafe for Trailer<'a>
impl<'a> Send for Trailer<'a>
impl<'a> Sync for Trailer<'a>
impl<'a> Unpin for Trailer<'a>
impl<'a> UnsafeUnpin for Trailer<'a>
impl<'a> !UnwindSafe for Trailer<'a>
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