[][src]Struct edi::GenericSegment

pub struct GenericSegment<'a> {
    pub segment_abbreviation: Cow<'a, str>,
    pub elements: VecDeque<Cow<'a, str>>,
}

A generic segment.

Fields

segment_abbreviation: Cow<'a, str>

The first element in the segment which denotes the segment type.

elements: VecDeque<Cow<'a, str>>

The ordered list of elements in the segment.

Methods

impl<'a> GenericSegment<'a>[src]

pub fn parse_from_tokens(
    tokens: Vec<&'a str>
) -> Result<GenericSegment, EdiParseError>
[src]

Given [SegmentTokens], construct a GenericSegment.

Trait Implementations

impl<'a> PartialEq<GenericSegment<'a>> for GenericSegment<'a>[src]

impl<'a> Debug for GenericSegment<'a>[src]

impl<'a> Serialize for GenericSegment<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for GenericSegment<'a>[src]

Auto Trait Implementations

impl<'a> Send for GenericSegment<'a>

impl<'a> Sync for GenericSegment<'a>

impl<'a> Unpin for GenericSegment<'a>

impl<'a> UnwindSafe for GenericSegment<'a>

impl<'a> RefUnwindSafe for GenericSegment<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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