pub trait UninitAPI<Inp> {
type Out;
// Required method
fn uninit_f(self) -> Result<Self::Out>;
// Provided method
fn uninit(self) -> Self::Out
where Self: Sized { ... }
}pub trait UninitAPI<Inp> {
type Out;
// Required method
fn uninit_f(self) -> Result<Self::Out>;
// Provided method
fn uninit(self) -> Self::Out
where Self: Sized { ... }
}