pub struct Field13D {
pub date: NaiveDate,
pub time: NaiveTime,
pub offset_sign: char,
pub offset_seconds: String,
}
Expand description
Field 13D: Date/Time Indication
Date and time indication with UTC offset.
Fields§
§date: NaiveDate
Date component (YYMMDD)
time: NaiveTime
Time component (HHMM)
offset_sign: char
UTC offset sign
offset_seconds: String
UTC offset in total seconds
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Field13D
impl<'de> Deserialize<'de> for Field13D
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 Field13D
impl SwiftField for Field13D
Source§fn to_swift_string(&self) -> String
fn to_swift_string(&self) -> String
Convert field back to SWIFT string format
Source§fn validate(&self) -> ValidationResult
fn validate(&self) -> ValidationResult
Validate field according to SWIFT format rules
Source§fn format_spec() -> &'static str
fn format_spec() -> &'static str
Get field format specification
impl StructuralPartialEq for Field13D
Auto Trait Implementations§
impl Freeze for Field13D
impl RefUnwindSafe for Field13D
impl Send for Field13D
impl Sync for Field13D
impl Unpin for Field13D
impl UnwindSafe for Field13D
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