[−][src]Trait pyo3::class::sequence::PySequenceProtocol
Sequence interface
Provided methods
fn __len__(&'p self) -> Self::Result where
Self: PySequenceLenProtocol<'p>,
Self: PySequenceLenProtocol<'p>,
fn __getitem__(&'p self, idx: Self::Index) -> Self::Result where
Self: PySequenceGetItemProtocol<'p>,
Self: PySequenceGetItemProtocol<'p>,
fn __setitem__(
&'p mut self,
idx: Self::Index,
value: Self::Value
) -> Self::Result where
Self: PySequenceSetItemProtocol<'p>,
&'p mut self,
idx: Self::Index,
value: Self::Value
) -> Self::Result where
Self: PySequenceSetItemProtocol<'p>,
fn __delitem__(&'p mut self, idx: Self::Index) -> Self::Result where
Self: PySequenceDelItemProtocol<'p>,
Self: PySequenceDelItemProtocol<'p>,
fn __contains__(&'p self, item: Self::Item) -> Self::Result where
Self: PySequenceContainsProtocol<'p>,
Self: PySequenceContainsProtocol<'p>,
fn __concat__(&'p self, other: Self::Other) -> Self::Result where
Self: PySequenceConcatProtocol<'p>,
Self: PySequenceConcatProtocol<'p>,
fn __repeat__(&'p self, count: Self::Index) -> Self::Result where
Self: PySequenceRepeatProtocol<'p>,
Self: PySequenceRepeatProtocol<'p>,
fn __inplace_concat__(&'p mut self, other: Self::Other) -> Self::Result where
Self: PySequenceInplaceConcatProtocol<'p>,
Self: PySequenceInplaceConcatProtocol<'p>,
fn __inplace_repeat__(&'p mut self, count: Self::Index) -> Self::Result where
Self: PySequenceInplaceRepeatProtocol<'p>,
Self: PySequenceInplaceRepeatProtocol<'p>,