Struct querent_synapse::callbacks::interface::EventHandler
source · pub struct EventHandler { /* private fields */ }
Implementations§
source§impl EventHandler
impl EventHandler
pub fn new(event_sender: Option<Sender<(EventType, EventState)>>) -> Self
Trait Implementations§
source§impl Clone for EventHandler
impl Clone for EventHandler
source§fn clone(&self) -> EventHandler
fn clone(&self) -> EventHandler
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 EventHandler
impl Debug for EventHandler
source§impl EventCallbackInterface for EventHandler
impl EventCallbackInterface for EventHandler
fn handle_event(&mut self, event_type: EventType, event_data: EventState)
source§impl IntoPy<Py<PyAny>> for EventHandler
impl IntoPy<Py<PyAny>> for EventHandler
source§impl PyClassImpl for EventHandler
impl PyClassImpl for EventHandler
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<EventHandler>
type ThreadChecker = SendablePyClass<EventHandler>
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<'a, 'py> PyFunctionArgument<'a, 'py> for &'a EventHandler
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a EventHandler
source§impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut EventHandler
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut EventHandler
source§impl PyTypeInfo for EventHandler
impl PyTypeInfo for EventHandler
§type AsRefTarget = PyCell<EventHandler>
type AsRefTarget = PyCell<EventHandler>
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 EventHandler
impl !RefUnwindSafe for EventHandler
impl Send for EventHandler
impl Sync for EventHandler
impl Unpin for EventHandler
impl !UnwindSafe for EventHandler
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