pub trait SequenceExt<T: Clone>where Self: AsRef<[T]>,{ // Provided method fn mul(&self, vm: &VirtualMachine, n: isize) -> PyResult<Vec<T>> { ... } }