Struct pyo3_polars::PySeries
source · #[repr(transparent)]pub struct PySeries(pub Series);Expand description
A wrapper around a Series that can be converted to and from python with pyo3.
Tuple Fields§
§0: SeriesTrait Implementations§
source§impl<'a> FromPyObject<'a> for PySeries
impl<'a> FromPyObject<'a> for PySeries
Auto Trait Implementations§
impl Freeze for PySeries
impl !RefUnwindSafe for PySeries
impl Send for PySeries
impl Sync for PySeries
impl Unpin for PySeries
impl !UnwindSafe for PySeries
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<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