pub trait AltListData: AltrepLen {
// Required method
fn elt(&self, i: usize) -> SEXP;
}Expand description
Trait for types that can back an ALTLIST vector.
List elements are arbitrary SEXPs, so this trait works with raw SEXP.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".