[][src]Trait rustpython_vm::obj::objsequence::SimpleSeq

pub trait SimpleSeq {
    fn len(&self) -> usize;
fn iter(&self) -> Box<dyn ExactSizeIterator<Item = &'a PyObjectRef> + 'a>; }

Required methods

fn len(&self) -> usize

fn iter(&self) -> Box<dyn ExactSizeIterator<Item = &'a PyObjectRef> + 'a>

Loading content...

Implementations on Foreign Types

impl<'_> SimpleSeq for &'_ [PyObjectRef][src]

impl SimpleSeq for VecDeque<PyObjectRef>[src]

Loading content...

Implementors

Loading content...