proton
0
|
A descriminated union that holds any scalar AMQP value. More...
#include <codec.h>
Data Fields | |
pn_type_t | type |
Indicates the type of value the atom is currently pointing to. More... | |
union { | |
bool as_bool | |
Valid when type is PN_BOOL. More... | |
uint8_t as_ubyte | |
Valid when type is PN_UBYTE. More... | |
int8_t as_byte | |
Valid when type is PN_BYTE. More... | |
uint16_t as_ushort | |
Valid when type is PN_USHORT. More... | |
int16_t as_short | |
Valid when type is PN_SHORT. More... | |
uint32_t as_uint | |
Valid when type is PN_UINT. More... | |
int32_t as_int | |
Valid when type is PN_INT. More... | |
pn_char_t as_char | |
Valid when type is PN_CHAR. More... | |
uint64_t as_ulong | |
Valid when type is PN_ULONG. More... | |
int64_t as_long | |
Valid when type is PN_LONG. More... | |
pn_timestamp_t as_timestamp | |
Valid when type is PN_TIMESTAMP. More... | |
float as_float | |
Valid when type is PN_FLOAT. More... | |
double as_double | |
Valid when type is PN_DOUBLE. More... | |
pn_decimal32_t as_decimal32 | |
Valid when type is PN_DECIMAL32. More... | |
pn_decimal64_t as_decimal64 | |
Valid when type is PN_DECIMAL64. More... | |
pn_decimal128_t as_decimal128 | |
Valid when type is PN_DECIMAL128. More... | |
pn_uuid_t as_uuid | |
Valid when type is PN_UUID. More... | |
pn_bytes_t as_bytes | |
Valid when type is PN_BINARY or PN_STRING or PN_SYMBOL. More... | |
} | u |
A descriminated union that holds any scalar AMQP value.
The type field indicates the AMQP type of the value, and the union may be used to access the value for a given type.
bool pn_atom_t::as_bool |
Valid when type is PN_BOOL.
int8_t pn_atom_t::as_byte |
Valid when type is PN_BYTE.
pn_bytes_t pn_atom_t::as_bytes |
pn_decimal128_t pn_atom_t::as_decimal128 |
Valid when type is PN_DECIMAL128.
pn_decimal32_t pn_atom_t::as_decimal32 |
Valid when type is PN_DECIMAL32.
pn_decimal64_t pn_atom_t::as_decimal64 |
Valid when type is PN_DECIMAL64.
double pn_atom_t::as_double |
Valid when type is PN_DOUBLE.
float pn_atom_t::as_float |
Valid when type is PN_FLOAT.
int32_t pn_atom_t::as_int |
Valid when type is PN_INT.
int64_t pn_atom_t::as_long |
Valid when type is PN_LONG.
int16_t pn_atom_t::as_short |
Valid when type is PN_SHORT.
pn_timestamp_t pn_atom_t::as_timestamp |
Valid when type is PN_TIMESTAMP.
uint8_t pn_atom_t::as_ubyte |
Valid when type is PN_UBYTE.
uint32_t pn_atom_t::as_uint |
Valid when type is PN_UINT.
uint64_t pn_atom_t::as_ulong |
Valid when type is PN_ULONG.
uint16_t pn_atom_t::as_ushort |
Valid when type is PN_USHORT.
pn_type_t pn_atom_t::type |
Indicates the type of value the atom is currently pointing to.
See pn_type_t for details on AMQP types.
union { ... } pn_atom_t::u |