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
impl PythonObject
pub fn serialize_with_pyversion<T, S>( value: &T, serializer: S, ) -> Result<S::Ok, S::Error>
Available on crate feature
serde
only.pub fn deserialize_with_pyversion<'de, T, D>(d: D) -> Result<T, D::Error>
Available on crate feature
serde
only.Trait Implementations
Source§impl Clone for PythonObject
impl Clone for PythonObject
Source§impl Debug for PythonObject
impl Debug for PythonObject
Source§impl Deref for PythonObject
impl Deref for PythonObject
Source§impl DerefMut for PythonObject
impl DerefMut for PythonObject
Source§impl<'a> Deserialize<'a> for PythonObject
Available on crate feature serde
only.
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>,
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
impl From<Py<PyAny>> for PythonObject
Source§impl<'py> IntoPyObject<'py> for PythonObject
impl<'py> IntoPyObject<'py> for PythonObject
Source§type Output = Bound<'py, <PythonObject as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <PythonObject as IntoPyObject<'py>>::Target>
The smart pointer type to use. Read more
Source§fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error>
fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error>
Performs the conversion.
Source§impl PartialEq for PythonObject
impl PartialEq for PythonObject
Source§impl Serialize for PythonObject
Available on crate feature serde
only.
impl Serialize for PythonObject
Available on crate feature
serde
only.Source§impl TrySerializeToBytes for PythonObject
Available on crate feature serde
only.
impl TrySerializeToBytes for PythonObject
Available on crate feature
serde
only.