pub trait TupleAsPackedArgs {
const LEN: usize;
// Required method
fn fill_any_view<'a>(&'a self, any_view: &mut [AnyView<'a>]);
}
Required Associated Constants§
Required Methods§
fn fill_any_view<'a>(&'a self, any_view: &mut [AnyView<'a>])
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.