pub trait HandoffMeta: Any {
// Required method
fn len(&self) -> usize;
// Provided method
fn is_empty(&self) -> bool { ... }
}Expand description
A handle onto the metadata part of a Handoff, with no element type.
pub trait HandoffMeta: Any {
// Required method
fn len(&self) -> usize;
// Provided method
fn is_empty(&self) -> bool { ... }
}A handle onto the metadata part of a Handoff, with no element type.