Struct tibco_ems::MapMessage[][src]

pub struct MapMessage {
    pub body_string: HashMap<String, String>,
    pub body_bool: HashMap<String, bool>,
    pub body_bytes: HashMap<String, Vec<u8>>,
    pub body_double: HashMap<String, f64>,
    pub body_float: HashMap<String, f32>,
    pub body_int: HashMap<String, i32>,
    pub body_long: HashMap<String, i64>,
    pub body_map: HashMap<String, MapMessage>,
    pub header: Option<HashMap<String, String>>,
}

represents a Map Message which can be transformed into Message through From,Into trait.

Fields

body_string: HashMap<String, String>

message body string properties

body_bool: HashMap<String, bool>

message body bool properties

body_bytes: HashMap<String, Vec<u8>>

message body binary properties

body_double: HashMap<String, f64>

message body double properties

body_float: HashMap<String, f32>

message body float properties

body_int: HashMap<String, i32>

message body int properties

body_long: HashMap<String, i64>

message body long properties

body_map: HashMap<String, MapMessage>

message body map properties

header: Option<HashMap<String, String>>

message header

Trait Implementations

impl Clone for MapMessage[src]

impl Debug for MapMessage[src]

impl Default for MapMessage[src]

impl From<&'_ Message> for MapMessage[src]

impl From<MapMessage> for Message[src]

impl From<Message> for MapMessage[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.