pub trait AsPrimitive<T>where T: 'static,{ // Required method fn as_(&self) -> T; }
Convert a value to another, using the as operator.
as