pub struct DescriptiveBlock {
pub record_type: String,
pub blank_1: String,
pub reel_seq: String,
pub bank_name: String,
pub blank_2: String,
pub user_name: String,
pub apca_number: String,
pub file_description: String,
pub settle_date: String,
pub blank_3: String,
}Fields§
§record_type: String§blank_1: String§reel_seq: String§bank_name: String§blank_2: String§user_name: String§apca_number: String§file_description: String§settle_date: String§blank_3: StringImplementations§
Source§impl DescriptiveBlock
impl DescriptiveBlock
pub fn deserialise(i: &str) -> IResult<&str, Self>
pub async fn validate(&self) -> Result<String, LineParseError>
Trait Implementations§
Source§impl Clone for DescriptiveBlock
impl Clone for DescriptiveBlock
Source§fn clone(&self) -> DescriptiveBlock
fn clone(&self) -> DescriptiveBlock
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DescriptiveBlock
impl Debug for DescriptiveBlock
Source§impl Default for DescriptiveBlock
impl Default for DescriptiveBlock
Source§fn default() -> DescriptiveBlock
fn default() -> DescriptiveBlock
Returns the “default value” for a type. Read more
Source§impl Display for DescriptiveBlock
impl Display for DescriptiveBlock
Source§impl From<SettlementSettings> for DescriptiveBlock
impl From<SettlementSettings> for DescriptiveBlock
Source§fn from(desc_settings: SettlementSettings) -> Self
fn from(desc_settings: SettlementSettings) -> Self
Converts to this type from the input type.
Source§impl Hash for DescriptiveBlock
impl Hash for DescriptiveBlock
Source§impl Ord for DescriptiveBlock
impl Ord for DescriptiveBlock
Source§fn cmp(&self, other: &DescriptiveBlock) -> Ordering
fn cmp(&self, other: &DescriptiveBlock) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DescriptiveBlock
impl PartialEq for DescriptiveBlock
Source§impl PartialOrd for DescriptiveBlock
impl PartialOrd for DescriptiveBlock
impl Eq for DescriptiveBlock
impl StructuralPartialEq for DescriptiveBlock
Auto Trait Implementations§
impl Freeze for DescriptiveBlock
impl RefUnwindSafe for DescriptiveBlock
impl Send for DescriptiveBlock
impl Sync for DescriptiveBlock
impl Unpin for DescriptiveBlock
impl UnwindSafe for DescriptiveBlock
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