[][src]Struct rustpython_vm::obj::objmap::PyMap

pub struct PyMap { /* fields omitted */ }

map(func, *iterables) --> map object

Make an iterator that computes the function using arguments from each of the iterables. Stops when the shortest iterable is exhausted.

Trait Implementations

impl Debug for PyMap[src]

impl PyClassDef for PyMap[src]

impl PyClassImpl for PyMap[src]

impl PyValue for PyMap[src]

Auto Trait Implementations

impl !RefUnwindSafe for PyMap

impl !Send for PyMap

impl !Sync for PyMap

impl Unpin for PyMap

impl !UnwindSafe for PyMap

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> IntoPyObject for T where
    T: PyValue
[src]

impl<T> PyObjectPayload for T where
    T: 'static + PyValue
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,