[][src]Struct pyo3::types::PySlice

#[repr(transparent)]
pub struct PySlice(_, _);

Represents a Python slice.

Only c_long indices supported at the moment by PySlice object.

Methods

impl PySlice[src]

pub fn new(py: Python, start: isize, stop: isize, step: isize) -> &PySlice[src]

Construct a new slice with the given elements.

pub fn indices(&self, length: c_long) -> PyResult<PySliceIndices>[src]

Retrieve the start, stop, and step indices from the slice object slice assuming a sequence of length length, and store the length of the slice in slicelength.

Trait Implementations

impl AsPyPointer for PySlice[src]

fn as_ptr(&self) -> *mut PyObject[src]

Gets the underlying FFI pointer, returns a borrowed pointer.

impl AsRef<PyAny> for PySlice[src]

impl Debug for PySlice[src]

impl Display for PySlice[src]

impl<'a> From<&'a PySlice> for &'a PyAny[src]

impl PartialEq<PySlice> for PySlice[src]

impl PyNativeType for PySlice[src]

impl PyObjectAlloc for PySlice[src]

impl PyTypeInfo for PySlice[src]

type Type = ()

Type of objects to store in PyObject struct

type BaseType = PyAny

Base class

impl PyTypeObject for PySlice[src]

impl ToPyObject for PySlice[src]

Auto Trait Implementations

impl !RefUnwindSafe for PySlice

impl !Send for PySlice

impl !Sync for PySlice

impl Unpin for PySlice

impl UnwindSafe for PySlice

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> PyObjectAlloc for T where
    T: PyObjectWithFreeList
[src]

impl<T> PyTypeCreate for T where
    T: PyObjectAlloc + PyTypeObject
[src]

impl<T> PyTypeObject for T where
    T: PyTypeInfo + PyMethodsProtocol + PyObjectAlloc
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.