[][src]Struct iso8583_rs::iso8583::bitmap::BmpField

pub struct BmpField {
    pub name: String,
    pub id: u32,
    pub encoding: Encoding,
    pub children: Vec<Box<dyn Field>>,
}

This struct represents a bitmapped field in the ISO message

Fields

name: Stringid: u32encoding: Encodingchildren: Vec<Box<dyn Field>>

Implementations

impl BmpField[src]

Operarions on BmpField

pub fn by_position(&self, pos: u32) -> Result<&Box<dyn Field>, IsoError>[src]

Returns a field at the position (if defined or a IsoError if not)

Trait Implementations

impl Field for BmpField[src]

Auto Trait Implementations

impl !RefUnwindSafe for BmpField

impl !Send for BmpField

impl Sync for BmpField

impl Unpin for BmpField

impl !UnwindSafe for BmpField

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,