pub struct SequenceType(/* private fields */);
Trait Implementations§
Source§impl From<SequenceType> for SequenceType
impl From<SequenceType> for SequenceType
Source§fn from(ty: SequenceType) -> Self
fn from(ty: SequenceType) -> Self
Converts to this type from the input type.
Source§impl From<SequenceType> for SequenceType
impl From<SequenceType> for SequenceType
Source§fn from(ty: SequenceType) -> Self
fn from(ty: SequenceType) -> Self
Converts to this type from the input type.
Source§impl<'py> FromPyObject<'py> for SequenceType
impl<'py> FromPyObject<'py> for SequenceType
Source§impl<'py> IntoPyObject<'py> for SequenceType
impl<'py> IntoPyObject<'py> for SequenceType
Source§type Output = Bound<'py, <SequenceType as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <SequenceType as IntoPyObject<'py>>::Target>
The smart pointer type to use. Read more
Source§type Error = Infallible
type Error = Infallible
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for SequenceType
impl RefUnwindSafe for SequenceType
impl Send for SequenceType
impl Sync for SequenceType
impl Unpin for SequenceType
impl UnwindSafe for SequenceType
Blanket Implementations§
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<'py, T> FromPyObjectBound<'_, 'py> for Twhere
T: FromPyObject<'py>,
impl<'py, T> FromPyObjectBound<'_, 'py> for Twhere
T: FromPyObject<'py>,
Source§impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
Source§fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
Converts
self
into an owned Python object, dropping type information.