pub trait ExtArray: Sealed {
const LEN: usize;
// Provided method
fn fmt(&self) -> ArrayFmt<'_, Self>
where Self: Sized { ... }
}
Expand description
Extension trait providing convenience methods for arrays.
This trait is sealed and cannot be implemented for any other type.
Required Associated Constants§
Provided Methods§
Object Safety§
This trait is not object safe.