NAD

Struct NAD 

Source
pub struct NAD {
    pub _010: _3035,
    pub _020: Option<C082>,
    pub _030: Option<C058>,
    pub _040: Option<C080>,
    pub _050: Option<C059>,
    pub _060: Option<String>,
    pub _070: Option<C819>,
    pub _080: Option<String>,
    pub _090: Option<String>,
}
Expand description

NAD - NAME AND ADDRESS

A segment specifying the name and/or address associated with the event such as notify party, terminal address, trucking company for gate move.

Fields§

§_010: _3035

PARTY FUNCTION CODE QUALIFIER

Code giving specific meaning to a party.

§_020: Option<C082>

C082 - PARTY IDENTIFICATION DETAILS

Identification of a transaction party by code.

§_030: Option<C058>

C058 - NAME AND ADDRESS

Unstructured name and address: one to five lines.

§_040: Option<C080>

C080 - PARTY NAME

Identification of a transaction party by name, one to five lines. Party name may be formatted.

§_050: Option<C059>

C059 - STREET

Street address and/or PO Box number in a structured address: one to four lines.

§_060: Option<String>

CITY NAME

Name of a city.

§_070: Option<C819>

C819 - COUNTRY SUB-ENTITY DETAILS

To specify a part of a country (eg county or part of a city).

§_080: Option<String>

POSTAL IDENTIFICATION CODE

Code specifying the postal zone or address.

§_090: Option<String>

COUNTRY NAME CODE

Identification of the name of the country or other geographical entity as specified in ISO 3166.

Trait Implementations§

Source§

impl Debug for NAD

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for NAD

Source§

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 Display for NAD

Source§

fn fmt<'x>(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> Parser<&'a str, NAD, Error<&'a str>> for NAD

Source§

fn parse(input: &'a str) -> IResult<&'a str, NAD>

Source§

impl Serialize for NAD

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl Freeze for NAD

§

impl RefUnwindSafe for NAD

§

impl Send for NAD

§

impl Sync for NAD

§

impl Unpin for NAD

§

impl UnwindSafe for NAD

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,