pub enum AsyncBehaviorFact {
NeverSuspends,
MaySuspend,
RequiresAsyncRuntime,
}Variants§
Trait Implementations§
Source§impl Clone for AsyncBehaviorFact
impl Clone for AsyncBehaviorFact
Source§fn clone(&self) -> AsyncBehaviorFact
fn clone(&self) -> AsyncBehaviorFact
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 moreSource§impl Debug for AsyncBehaviorFact
impl Debug for AsyncBehaviorFact
Source§impl Default for AsyncBehaviorFact
impl Default for AsyncBehaviorFact
Source§fn default() -> AsyncBehaviorFact
fn default() -> AsyncBehaviorFact
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AsyncBehaviorFact
impl<'de> Deserialize<'de> for AsyncBehaviorFact
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AsyncBehaviorFact
impl PartialEq for AsyncBehaviorFact
Source§fn eq(&self, other: &AsyncBehaviorFact) -> bool
fn eq(&self, other: &AsyncBehaviorFact) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AsyncBehaviorFact
impl Serialize for AsyncBehaviorFact
impl StructuralPartialEq for AsyncBehaviorFact
Auto Trait Implementations§
impl Freeze for AsyncBehaviorFact
impl RefUnwindSafe for AsyncBehaviorFact
impl Send for AsyncBehaviorFact
impl Sync for AsyncBehaviorFact
impl Unpin for AsyncBehaviorFact
impl UnsafeUnpin for AsyncBehaviorFact
impl UnwindSafe for AsyncBehaviorFact
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