pub struct IntoPyObjectConverter<T>(IntoPyConverter<T>);
Tuple Fields§
§0: IntoPyConverter<T>
Implementations§
Source§impl<'py, T: IntoPyObject<'py>> IntoPyObjectConverter<T>
impl<'py, T: IntoPyObject<'py>> IntoPyObjectConverter<T>
pub fn wrap(&self, obj: T) -> Result<T, Infallible>
Source§impl<'py, T: IntoPyObject<'py>, E> IntoPyObjectConverter<Result<T, E>>
impl<'py, T: IntoPyObject<'py>, E> IntoPyObjectConverter<Result<T, E>>
pub fn wrap(&self, obj: Result<T, E>) -> Result<T, E>
pub fn map_into_pyobject(
&self,
py: Python<'py>,
obj: PyResult<T>,
) -> PyResult<PyObject>where
T: IntoPyObject<'py>,
pub fn map_into_ptr(
&self,
py: Python<'py>,
obj: PyResult<T>,
) -> PyResult<*mut PyObject>where
T: IntoPyObject<'py>,
Methods from Deref<Target = IntoPyConverter<T>>§
pub fn wrap(&self, obj: T) -> Result<T, Infallible>
pub fn wrap(&self, obj: Result<T, E>) -> Result<T, E>
pub fn map_into_pyobject( &self, py: Python<'_>, obj: PyResult<T>, ) -> PyResult<PyObject>
pub fn map_into_ptr( &self, py: Python<'_>, obj: PyResult<T>, ) -> PyResult<*mut PyObject>
Methods from Deref<Target = UnknownReturnResultType<T>>§
pub fn wrap<'py>(&self, _: Result<T, E>) -> Result<T, E>where
T: IntoPyObject<'py>,
Methods from Deref<Target = UnknownReturnType<T>>§
pub fn wrap<'py>(&self, _: T) -> Twhere
T: IntoPyObject<'py>,
pub fn map_into_pyobject<'py>(
&self,
_: Python<'py>,
_: PyResult<T>,
) -> PyResult<PyObject>where
T: IntoPyObject<'py>,
pub fn map_into_ptr<'py>(
&self,
_: Python<'py>,
_: PyResult<T>,
) -> PyResult<*mut PyObject>where
T: IntoPyObject<'py>,
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for IntoPyObjectConverter<T>
impl<T> RefUnwindSafe for IntoPyObjectConverter<T>where
T: RefUnwindSafe,
impl<T> Send for IntoPyObjectConverter<T>where
T: Send,
impl<T> Sync for IntoPyObjectConverter<T>where
T: Sync,
impl<T> Unpin for IntoPyObjectConverter<T>where
T: Unpin,
impl<T> UnwindSafe for IntoPyObjectConverter<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> AssertNotZeroSized for T
impl<T> AssertNotZeroSized for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more