#[non_exhaustive]pub enum ProviderLane {
Native,
Wasm,
}Expand description
Runtime lane in which the provider executes.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for ProviderLane
impl Clone for ProviderLane
Source§fn clone(&self) -> ProviderLane
fn clone(&self) -> ProviderLane
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ProviderLane
Source§impl Debug for ProviderLane
impl Debug for ProviderLane
impl Eq for ProviderLane
Source§impl PartialEq for ProviderLane
impl PartialEq for ProviderLane
impl StructuralPartialEq for ProviderLane
Auto Trait Implementations§
impl Freeze for ProviderLane
impl RefUnwindSafe for ProviderLane
impl Send for ProviderLane
impl Sync for ProviderLane
impl Unpin for ProviderLane
impl UnsafeUnpin for ProviderLane
impl UnwindSafe for ProviderLane
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