HandoffMeta

Trait HandoffMeta 

Source
pub trait HandoffMeta: Any {
    // Required method
    fn is_bottom(&self) -> bool;
}
Expand description

A handle onto the metadata part of a Handoff, with no element type.

Required Methods§

Source

fn is_bottom(&self) -> bool

Return if the handoff is empty.

Implementations on Foreign Types§

Source§

impl<H> HandoffMeta for Rc<RefCell<H>>
where H: HandoffMeta,

Source§

fn is_bottom(&self) -> bool

Implementors§