pub trait BalloonProvider<'a> {
// Required method
fn from_map(payload: &'a Value) -> Result<Self, PlistParseError>
where Self: Sized;
}Expand description
Defines behavior for different types of messages that have custom balloons
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".