pub enum SyncStatus {
Signaled = 37_145,
Unsignaled = 37_144,
}
Variants§
Trait Implementations§
Source§impl Clone for SyncStatus
impl Clone for SyncStatus
Source§fn clone(&self) -> SyncStatus
fn clone(&self) -> SyncStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SyncStatus
impl Debug for SyncStatus
Source§impl From<SyncStatus> for JsValue
impl From<SyncStatus> for JsValue
Source§fn from(value: SyncStatus) -> Self
fn from(value: SyncStatus) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for SyncStatus
impl FromWasmAbi for SyncStatus
Source§impl IntoWasmAbi for SyncStatus
impl IntoWasmAbi for SyncStatus
Source§impl OptionFromWasmAbi for SyncStatus
impl OptionFromWasmAbi for SyncStatus
Source§impl OptionIntoWasmAbi for SyncStatus
impl OptionIntoWasmAbi for SyncStatus
Source§impl TryFromJsValue for SyncStatus
impl TryFromJsValue for SyncStatus
Source§fn try_from_js_value(
value: JsValue,
) -> Result<Self, <SyncStatus as TryFromJsValue>::Error>
fn try_from_js_value( value: JsValue, ) -> Result<Self, <SyncStatus as TryFromJsValue>::Error>
Performs the conversion.
Source§impl VectorFromWasmAbi for SyncStatus
impl VectorFromWasmAbi for SyncStatus
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[SyncStatus]>
Source§impl VectorIntoJsValue for SyncStatus
impl VectorIntoJsValue for SyncStatus
fn vector_into_jsvalue(vector: Box<[SyncStatus]>) -> JsValue
Source§impl VectorIntoWasmAbi for SyncStatus
impl VectorIntoWasmAbi for SyncStatus
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[SyncStatus]>) -> Self::Abi
Source§impl WasmDescribeVector for SyncStatus
impl WasmDescribeVector for SyncStatus
impl Copy for SyncStatus
Auto Trait Implementations§
impl Freeze for SyncStatus
impl RefUnwindSafe for SyncStatus
impl Send for SyncStatus
impl Sync for SyncStatus
impl Unpin for SyncStatus
impl UnwindSafe for SyncStatus
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> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.