pub enum TimeEventCallback {
Python(Py<PyAny>),
Rust(Rc<dyn Fn(TimeEvent)>),
}
Expand description
Callback type for time events.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TimeEventCallback
impl Clone for TimeEventCallback
Source§impl Debug for TimeEventCallback
impl Debug for TimeEventCallback
Source§impl<F> From<F> for TimeEventCallback
impl<F> From<F> for TimeEventCallback
Source§impl From<Py<PyAny>> for TimeEventCallback
Available on crate feature python
only.
impl From<Py<PyAny>> for TimeEventCallback
Available on crate feature
python
only.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