pub enum MessageItem {
Array(Vec<MessageItem>, i32),
Struct(Vec<MessageItem>),
Variant(Box<MessageItem>),
DictEntry(Box<MessageItem>, Box<MessageItem>),
ObjectPath(String),
Str(String),
Bool(bool),
Byte(u8),
Int16(i16),
Int32(i32),
Int64(i64),
UInt16(u16),
UInt32(u32),
UInt64(u64),
Double(f64),
}
Variants
Array | |
Struct | |
Variant | |
DictEntry | |
ObjectPath | |
Str | |
Bool | |
Byte | |
Int16 | |
Int32 | |
Int64 | |
UInt16 | |
UInt32 | |
UInt64 | |
Double | |
Methods
Trait Implementations
impl PropertyGetHandler for MessageItem
fn get(&self) -> PropertyGetResult
Derived Implementations
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).