Struct cpython::PySequence [] [src]

pub struct PySequence(_);

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

Methods

impl PySequence
[src]

[src]

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

[src]

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

[src]

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.

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

Return a fresh list based on the Sequence.

[src]

Return a fresh tuple based on the Sequence.

[src]

Trait Implementations

impl ToPyObject for PySequence
[src]

Identity conversion: allows using existing PyObject instances where T: ToPyObject is expected.

[src]

Converts self into a Python object.

[src]

Converts self into a Python object. Read more

[src]

Converts self into a Python object and calls the specified closure on the native FFI pointer underlying the Python object. Read more

impl<'source> FromPyObject<'source> for PySequence
[src]

[src]

Extracts Self from the source PyObject.

impl<'source> FromPyObject<'source> for &'source PySequence
[src]

[src]

Extracts Self from the source PyObject.

impl PythonObject for PySequence
[src]

[src]

Casts the Python object to PyObject.

[src]

Casts the Python object to PyObject.

[src]

Unchecked downcast from PyObject to Self. Undefined behavior if the input object does not have the expected type.

[src]

Unchecked downcast from PyObject to Self. Undefined behavior if the input object does not have the expected type.

impl PythonObjectWithCheckedDowncast for PySequence
[src]

[src]

Cast from PyObject to a concrete Python object type.

[src]

Cast from PyObject to a concrete Python object type.