pub trait DeathRecipient: Send + Sync {
// Required method
fn binder_died(&self, who: &WIBinder);
}Expand description
Interface for receiving a notification when a binder object is no longer valid.
This trait corresponds to the parts of the interface of the C++ DeathRecipient
class which are public.