Struct pythonize::PythonizeUnnamedMappingAdapter

source ·
pub struct PythonizeUnnamedMappingAdapter<'py, T: PythonizeMappingType<'py>> { /* private fields */ }
Expand description

Adapter type to use an unnamed mapping type, i.e. one that implements PythonizeMappingType, as a named mapping type, i.e. one that implements PythonizeNamedMappingType. The adapter simply drops the provided name.

This adapter is commonly applied to use the same unnamed mapping type for both PythonizeTypes::Map and PythonizeTypes::NamedMap while only implementing PythonizeMappingType.

Trait Implementations§

source§

impl<'py, T: PythonizeMappingType<'py>> PythonizeNamedMappingType<'py> for PythonizeUnnamedMappingAdapter<'py, T>

§

type Builder = <T as PythonizeMappingType<'py>>::Builder

Builder type for Python mappings with a name
source§

fn builder( py: Python<'py>, len: usize, _name: &'static str, ) -> PyResult<Self::Builder>

Create a builder for a Python mapping with a name
source§

fn push_field( builder: &mut Self::Builder, name: Bound<'py, PyString>, value: Bound<'py, PyAny>, ) -> PyResult<()>

Adds the field to the named mapping being built
source§

fn finish(builder: Self::Builder) -> PyResult<Bound<'py, PyMapping>>

Build the Python mapping

Auto Trait Implementations§

§

impl<'py, T> Freeze for PythonizeUnnamedMappingAdapter<'py, T>
where T: Freeze,

§

impl<'py, T> RefUnwindSafe for PythonizeUnnamedMappingAdapter<'py, T>
where T: RefUnwindSafe,

§

impl<'py, T> Send for PythonizeUnnamedMappingAdapter<'py, T>
where T: Send,

§

impl<'py, T> Sync for PythonizeUnnamedMappingAdapter<'py, T>
where T: Sync,

§

impl<'py, T> Unpin for PythonizeUnnamedMappingAdapter<'py, T>
where T: Unpin,

§

impl<'py, T> UnwindSafe for PythonizeUnnamedMappingAdapter<'py, T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Ungil for T
where T: Send,