pub trait AltRaw: AltVec {
const HAS_ELT: bool = false;
const HAS_GET_REGION: bool = false;
// Provided methods
fn elt(_x: SEXP, _i: R_xlen_t) -> u8 { ... }
fn get_region(
_x: SEXP,
_i: R_xlen_t,
_n: R_xlen_t,
_buf: &mut [u8],
) -> R_xlen_t { ... }
}Expand description
Raw vector methods.
Provided Associated Constants§
Sourceconst HAS_GET_REGION: bool = false
const HAS_GET_REGION: bool = false
Set to true to register get_region.
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.