Struct querent_synapse::comm::channel::PyMessageInterface   
source · pub struct PyMessageInterface { /* private fields */ }Implementations§
source§impl PyMessageInterface
 
impl PyMessageInterface
pub fn new(channel: ChannelHandler) -> Self
pub fn receive_tokens_in_python(&mut self) -> Option<IngestedTokens>
pub fn send_tokens_in_rust(&mut self, tokens: IngestedTokens)
pub fn receive_in_python(&mut self) -> Option<MessageState>
pub fn send_in_rust( &mut self, message_type: MessageType, message_data: MessageState )
Trait Implementations§
source§impl Clone for PyMessageInterface
 
impl Clone for PyMessageInterface
source§fn clone(&self) -> PyMessageInterface
 
fn clone(&self) -> PyMessageInterface
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for PyMessageInterface
 
impl Debug for PyMessageInterface
source§impl IntoPy<Py<PyAny>> for PyMessageInterface
 
impl IntoPy<Py<PyAny>> for PyMessageInterface
source§impl PyClass for PyMessageInterface
 
impl PyClass for PyMessageInterface
source§impl PyClassImpl for PyMessageInterface
 
impl PyClassImpl for PyMessageInterface
source§const IS_BASETYPE: bool = false
 
const IS_BASETYPE: bool = false
#[pyclass(subclass)]
source§const IS_SUBCLASS: bool = false
 
const IS_SUBCLASS: bool = false
#[pyclass(extends=…)]
source§const IS_MAPPING: bool = false
 
const IS_MAPPING: bool = false
#[pyclass(mapping)]
source§const IS_SEQUENCE: bool = false
 
const IS_SEQUENCE: bool = false
#[pyclass(sequence)]
§type ThreadChecker = SendablePyClass<PyMessageInterface>
 
type ThreadChecker = SendablePyClass<PyMessageInterface>
This handles following two situations: Read more
§type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::MutableChild
 
type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::MutableChild
Immutable or mutable
§type BaseNativeType = PyAny
 
type BaseNativeType = PyAny
The closest native ancestor. This is 
PyAny by default, and when you declare
#[pyclass(extends=PyDict)], it’s PyDict.fn items_iter() -> PyClassItemsIter
fn lazy_type_object() -> &'static LazyTypeObject<Self>
fn dict_offset() -> Option<isize>
fn weaklist_offset() -> Option<isize>
source§impl PyClassNewTextSignature<PyMessageInterface> for PyClassImplCollector<PyMessageInterface>
 
impl PyClassNewTextSignature<PyMessageInterface> for PyClassImplCollector<PyMessageInterface>
fn new_text_signature(self) -> Option<&'static str>
source§impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a PyMessageInterface
 
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a PyMessageInterface
source§impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut PyMessageInterface
 
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut PyMessageInterface
source§impl PyMethods<PyMessageInterface> for PyClassImplCollector<PyMessageInterface>
 
impl PyMethods<PyMessageInterface> for PyClassImplCollector<PyMessageInterface>
fn py_methods(self) -> &'static PyClassItems
source§impl PyTypeInfo for PyMessageInterface
 
impl PyTypeInfo for PyMessageInterface
§type AsRefTarget = PyCell<PyMessageInterface>
 
type AsRefTarget = PyCell<PyMessageInterface>
Utility type to make Py::as_ref work.
source§fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
 
fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
Returns the PyTypeObject instance for this type.
§fn type_object(py: Python<'_>) -> &PyType
 
fn type_object(py: Python<'_>) -> &PyType
Returns the safe abstraction over the type object.
§fn is_type_of(object: &PyAny) -> bool
 
fn is_type_of(object: &PyAny) -> bool
Checks if 
object is an instance of this type or a subclass of this type.§fn is_exact_type_of(object: &PyAny) -> bool
 
fn is_exact_type_of(object: &PyAny) -> bool
Checks if 
object is an instance of this type.Auto Trait Implementations§
impl Freeze for PyMessageInterface
impl RefUnwindSafe for PyMessageInterface
impl Send for PyMessageInterface
impl Sync for PyMessageInterface
impl Unpin for PyMessageInterface
impl UnwindSafe for PyMessageInterface
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