Struct extfg_sigma::SigmaRequest[][src]

pub struct SigmaRequest {
    pub auth_serno: u64,
    pub tags: BTreeMap<u16, String>,
    pub iso_fields: BTreeMap<u16, IsoFieldData>,
    pub iso_subfields: BTreeMap<(u16, u8), IsoFieldData>,
    // some fields omitted
}

Fields

auth_serno: u64tags: BTreeMap<u16, String>iso_fields: BTreeMap<u16, IsoFieldData>iso_subfields: BTreeMap<(u16, u8), IsoFieldData>

Implementations

impl SigmaRequest[src]

pub fn new(
    saf: &str,
    source: &str,
    mti: &str,
    auth_serno: u64
) -> Result<Self, Error>
[src]

pub fn from_json_value(mut data: Value) -> Result<SigmaRequest, Error>[src]

pub fn encode(&self) -> Result<Bytes, Error>[src]

pub fn saf(&self) -> &str[src]

pub fn set_saf(&mut self, v: String) -> Result<(), Error>[src]

pub fn source(&self) -> &str[src]

pub fn set_source(&mut self, v: String) -> Result<(), Error>[src]

pub fn mti(&self) -> &str[src]

pub fn set_mti(&mut self, v: String) -> Result<(), Error>[src]

Trait Implementations

impl Debug for SigmaRequest[src]

Auto Trait Implementations

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, 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>,