pub trait BalloonProvider<'a> {
    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§

Creates the object from a HashMap of item attributes

Implementors§