Skip to main content

ToArray6

Trait ToArray6 

Source
pub trait ToArray6<T>: Into<[T; 6]> {
    // Provided method
    fn to_array6(self) -> [T; 6] { ... }
}

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<C, T> ToArray6<T> for C
where C: Into<[T; 6]>,