pub trait IntoSizewhere Self::Output: Size,{ type Output; // Required method fn into_size(self) -> Self::Output; }
The helper trait that converts the input type to a size type.