pub enum TimeEventCallback {
Python(Arc<PyObject>),
Rust(Rc<RustTimeEventCallback>),
}
Variants§
Python(Arc<PyObject>)
Rust(Rc<RustTimeEventCallback>)
Implementations§
Trait Implementations§
Source§impl Clone for TimeEventCallback
impl Clone for TimeEventCallback
Source§fn clone(&self) -> TimeEventCallback
fn clone(&self) -> TimeEventCallback
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 TimeEventCallback
impl Debug for TimeEventCallback
Source§impl From<Py<PyAny>> for TimeEventCallback
impl From<Py<PyAny>> for TimeEventCallback
Source§impl From<Rc<dyn Fn(TimeEvent)>> for TimeEventCallback
impl From<Rc<dyn Fn(TimeEvent)>> for TimeEventCallback
Source§fn from(value: Rc<RustTimeEventCallback>) -> Self
fn from(value: Rc<RustTimeEventCallback>) -> Self
Converts to this type from the input type.
Source§impl<T, F> From<ThrottlerProcess<T, F>> for TimeEventCallbackwhere
T: 'static,
F: Fn(T) + 'static,
impl<T, F> From<ThrottlerProcess<T, F>> for TimeEventCallbackwhere
T: 'static,
F: Fn(T) + 'static,
Source§fn from(value: ThrottlerProcess<T, F>) -> Self
fn from(value: ThrottlerProcess<T, F>) -> Self
Converts to this type from the input type.
Source§impl<T, F> From<ThrottlerResume<T, F>> for TimeEventCallbackwhere
T: 'static,
F: Fn(T) + 'static,
impl<T, F> From<ThrottlerResume<T, F>> for TimeEventCallbackwhere
T: 'static,
F: Fn(T) + 'static,
Source§fn from(value: ThrottlerResume<T, F>) -> Self
fn from(value: ThrottlerResume<T, F>) -> Self
Converts to this type from the input type.
impl Send for TimeEventCallback
impl Sync for TimeEventCallback
Auto Trait Implementations§
impl Freeze for TimeEventCallback
impl !RefUnwindSafe for TimeEventCallback
impl Unpin for TimeEventCallback
impl !UnwindSafe for TimeEventCallback
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more