Struct async_i3ipc::MsgResponse [−][src]
pub struct MsgResponse<D> {
pub msg_type: Msg,
pub body: D,
}Expand description
Instead of returning an enum, we’re returning a struct containing the Msg
type and some body. An advantage to this over the enum method is that there
is no minimum memory size that we must have. This is helpful when some
variants are very large compared to others, as in the case of say
reply::Node vs
reply::Config
Fields
msg_type: Msgbody: DImplementations
MsgResponse is valid for anything which can be deserialized with serde