#[repr(C)]pub struct CheckThreadFinishedCallback {
pub cb: CheckThreadFinishedCallbackType,
}
Fields§
§cb: CheckThreadFinishedCallbackType
Trait Implementations§
Source§impl Clone for CheckThreadFinishedCallback
impl Clone for CheckThreadFinishedCallback
Source§impl Debug for CheckThreadFinishedCallback
impl Debug for CheckThreadFinishedCallback
Source§impl Hash for CheckThreadFinishedCallback
impl Hash for CheckThreadFinishedCallback
Source§impl Ord for CheckThreadFinishedCallback
impl Ord for CheckThreadFinishedCallback
Source§impl PartialOrd for CheckThreadFinishedCallback
impl PartialOrd for CheckThreadFinishedCallback
impl Copy for CheckThreadFinishedCallback
impl Eq for CheckThreadFinishedCallback
Auto Trait Implementations§
impl Freeze for CheckThreadFinishedCallback
impl RefUnwindSafe for CheckThreadFinishedCallback
impl Send for CheckThreadFinishedCallback
impl Sync for CheckThreadFinishedCallback
impl Unpin for CheckThreadFinishedCallback
impl UnwindSafe for CheckThreadFinishedCallback
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,
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