pub trait FirstElem {
type Out;
// Required method
fn first_elem(&self) -> Option<Self::Out>;
}Expand description
Get the first element
pub trait FirstElem {
type Out;
// Required method
fn first_elem(&self) -> Option<Self::Out>;
}Get the first element