pub trait IntoBindingArray<'b, const N: usize> {
// Required method
fn into_array(self) -> [BindingResource<'b>; N];
}
Required Methods§
fn into_array(self) -> [BindingResource<'b>; N]
Implementations on Foreign Types§
Source§impl<'b, T: IntoBinding<'b>> IntoBindingArray<'b, 1> for (T₁, T₂, …, Tₙ)
impl<'b, T: IntoBinding<'b>> IntoBindingArray<'b, 1> for (T₁, T₂, …, Tₙ)
This trait is implemented for tuples up to 32 items long.