pub(crate) trait EventWrapperMessageConversion {
// Required method
fn try_from_message_interface_checked(
msg: &Message,
) -> Result<Self, AtspiError>
where Self: Sized;
}Expand description
An way to convert a zbus::Message without checking its interface.
Required Methods§
Sourcefn try_from_message_interface_checked(msg: &Message) -> Result<Self, AtspiError>where
Self: Sized,
fn try_from_message_interface_checked(msg: &Message) -> Result<Self, AtspiError>where
Self: Sized,
§Errors
Will fail if no matching member or body signature is found.