pub trait LineValidwhere
Self: Sized,{
type Length: ArrayLength<u8>;
// Required methods
fn try_clone_array(a: &Array<Self::Length>) -> Result<Self, ()>;
fn clone_line(&self) -> Array<Self::Length>;
}Required Associated Types§
type Length: ArrayLength<u8>
Required Methods§
fn try_clone_array(a: &Array<Self::Length>) -> Result<Self, ()>
fn clone_line(&self) -> Array<Self::Length>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".