pub struct Object<Meta: ObjectMetadata> {
pub interface: &'static str,
pub version: u32,
pub requests: &'static [MessageDesc],
pub events: &'static [MessageDesc],
pub meta: Meta,
pub childs_from_events: fn(_: u16, _: u32, _: &Meta) -> Option<Object<Meta>>,
pub childs_from_requests: fn(_: u16, _: u32, _: &Meta) -> Option<Object<Meta>>,
}
The representation of a protocol object
Interface name of this object
Description of the requests of this object
Description of the events of this object
Metadata associated to this object (ex: its event queue client side)
A function which, from an opcode, a version, and the Meta, creates a child
object associated with this event if any
A function which, from an opcode, a version, and the Meta, creates a child
object associated with this request if any
Create an Object corresponding to given interface and version
Create an optional Object
corresponding to the possible new_id
associated
with given event opcode
Create an optional Object
corresponding to the possible new_id
associated
with given request opcode
Check whether this object is of given interface
Create a placeholder object that will be filled-in by the message logic
Performs copy-assignment from source
. Read more
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static