Type Alias PythonFunction

Source
pub type PythonFunction = PythonObject;
Available on crate feature python only.

Aliased Type§

struct PythonFunction(pub Py<PyAny>);

Fields§

§0: Py<PyAny>

Implementations

Source§

impl PythonObject

Source

pub fn serialize_with_pyversion<T, S>( value: &T, serializer: S, ) -> Result<S::Ok, S::Error>

Available on crate feature serde only.
Source

pub fn deserialize_with_pyversion<'de, T, D>(d: D) -> Result<T, D::Error>
where T: From<PythonObject>, D: Deserializer<'de>,

Available on crate feature serde only.

Trait Implementations

Source§

impl Clone for PythonObject

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PythonObject

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Deref for PythonObject

Source§

type Target = Py<PyAny>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl DerefMut for PythonObject

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl<'a> Deserialize<'a> for PythonObject

Available on crate feature serde only.
Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'a>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<Py<PyAny>> for PythonObject

Source§

fn from(value: PyObject) -> Self

Converts to this type from the input type.
Source§

impl<'py> IntoPyObject<'py> for PythonObject

Source§

type Target = PyAny

The Python output type
Source§

type Output = Bound<'py, <PythonObject as IntoPyObject<'py>>::Target>

The smart pointer type to use. Read more
Source§

type Error = PyErr

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

fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error>

Performs the conversion.
Source§

impl PartialEq for PythonObject

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for PythonObject

Available on crate feature serde only.
Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl TrySerializeToBytes for PythonObject

Available on crate feature serde only.
Source§

fn try_serialize_to_bytes(&self) -> PolarsResult<Vec<u8>>

Source§

fn try_deserialize_bytes(bytes: &[u8]) -> PolarsResult<Self>

Source§

impl Eq for PythonObject