pub trait Remove {
type Error;
type Input;
type Output;
// Required method
fn remove(
&mut self,
input: Self::Input,
) -> Result<Self::Output, Self::Error>;
}Expand description
See Remove::remove for more information.