pub struct PyDataflowMessage {
pub data: PyArrowType<ArrayData>,
pub header: Header,
}Fields§
§data: PyArrowType<ArrayData>§header: HeaderImplementations§
Trait Implementations§
Source§impl<'py> IntoPyObject<'py> for PyDataflowMessage
impl<'py> IntoPyObject<'py> for PyDataflowMessage
Source§type Target = PyDataflowMessage
type Target = PyDataflowMessage
The Python output type
Source§type Output = Bound<'py, <PyDataflowMessage as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <PyDataflowMessage as IntoPyObject<'py>>::Target>
The smart pointer type to use. Read more
Source§fn into_pyobject(
self,
py: Python<'py>,
) -> Result<<PyDataflowMessage as IntoPyObject<'py>>::Output, <PyDataflowMessage as IntoPyObject<'py>>::Error>
fn into_pyobject( self, py: Python<'py>, ) -> Result<<PyDataflowMessage as IntoPyObject<'py>>::Output, <PyDataflowMessage as IntoPyObject<'py>>::Error>
Performs the conversion.
Source§impl PyClass for PyDataflowMessage
impl PyClass for PyDataflowMessage
Source§impl PyTypeInfo for PyDataflowMessage
impl PyTypeInfo for PyDataflowMessage
Source§fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
Returns the PyTypeObject instance for this type.
Source§fn type_object(py: Python<'_>) -> Bound<'_, PyType>
fn type_object(py: Python<'_>) -> Bound<'_, PyType>
Returns the safe abstraction over the type object.
Source§fn type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
fn type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
👎Deprecated since 0.23.0: renamed to
PyTypeInfo::type_objectDeprecated name for
PyTypeInfo::type_object.Source§fn is_type_of(object: &Bound<'_, PyAny>) -> bool
fn is_type_of(object: &Bound<'_, PyAny>) -> bool
Checks if
object is an instance of this type or a subclass of this type.Source§fn is_type_of_bound(object: &Bound<'_, PyAny>) -> bool
fn is_type_of_bound(object: &Bound<'_, PyAny>) -> bool
👎Deprecated since 0.23.0: renamed to
PyTypeInfo::is_type_ofDeprecated name for
PyTypeInfo::is_type_of.Source§fn is_exact_type_of(object: &Bound<'_, PyAny>) -> bool
fn is_exact_type_of(object: &Bound<'_, PyAny>) -> bool
Checks if
object is an instance of this type.Source§fn is_exact_type_of_bound(object: &Bound<'_, PyAny>) -> bool
fn is_exact_type_of_bound(object: &Bound<'_, PyAny>) -> bool
👎Deprecated since 0.23.0: renamed to
PyTypeInfo::is_exact_type_ofDeprecated name for
PyTypeInfo::is_exact_type_of.impl DerefToPyAny for PyDataflowMessage
Auto Trait Implementations§
impl Freeze for PyDataflowMessage
impl RefUnwindSafe for PyDataflowMessage
impl Send for PyDataflowMessage
impl Sync for PyDataflowMessage
impl Unpin for PyDataflowMessage
impl UnwindSafe for PyDataflowMessage
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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.