[][src]Struct pyo3::types::PySequence

#[repr(transparent)]
pub struct PySequence(_);

Represents a reference to a python object supporting the sequence protocol.

Methods

impl PySequence
[src]

Returns the number of objects in sequence. This is equivalent to Python len().

Return the concatenation of o1 and o2. Equivalent to python o1 + o2

Return the result of repeating sequence object o count times. Equivalent to python o * count NB: Python accepts negative counts; it returns an empty Sequence.

Concatenate of o1 and o2 on success. Equivalent to python o1 += o2

Repeate sequence object o count times and store in self. Equivalent to python o *= count NB: Python accepts negative counts; it empties the Sequence.

Return the ith element of the Sequence. Equivalent to python o[index]

Return the slice of sequence object o between begin and end. This is the equivalent of the Python expression o[begin:end]

Assign object v to the ith element of o. Equivalent to Python statement o[i] = v

Delete the ith element of object o. Python statement del o[i]

Assign the sequence object v to the slice in sequence object o from i1 to i2. This is the equivalent of the Python statement o[i1:i2] = v

Delete the slice in sequence object o from i1 to i2. equivalent of the Python statement del o[i1:i2]

Return the number of occurrences of value in o, that is, return the number of keys for which o[key] == value

Determine if o contains value. this is equivalent to the Python expression value in o

Return the first index i for which o[i] == value. This is equivalent to the Python expression o.index(value)

Return a fresh list based on the Sequence.

Return a fresh tuple based on the Sequence.

Trait Implementations

impl PyTryFrom for PySequence
[src]

impl PyObjectWithGIL for PySequence
[src]

impl ToPyPointer for PySequence
[src]

Gets the underlying FFI pointer, returns a borrowed pointer.

impl AsRef<PyObjectRef> for PySequence
[src]

impl PartialEq<PySequence> for PySequence
[src]

This method tests for !=.

Auto Trait Implementations

impl Send for PySequence

impl Sync for PySequence

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]