pub trait Remove<Idx>where
Idx: ?Sized,{
type Output;
// Required method
fn remove(&mut self, index: Idx) -> Option<Self::Output>;
}pub trait Remove<Idx>where
Idx: ?Sized,{
type Output;
// Required method
fn remove(&mut self, index: Idx) -> Option<Self::Output>;
}