pub enum CanvasOpenedAvailability {
Ready,
Stale,
Unknown,
}Expand description
Runtime-controlled routing state for the instance. “ready” when the provider connection is live; “stale” when the provider has gone away and the instance is awaiting rebinding.
Variants§
Ready
Provider connection is live; actions can be invoked.
Stale
Provider has gone away; the instance is awaiting rebinding.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for CanvasOpenedAvailability
impl Clone for CanvasOpenedAvailability
Source§fn clone(&self) -> CanvasOpenedAvailability
fn clone(&self) -> CanvasOpenedAvailability
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 CanvasOpenedAvailability
impl Debug for CanvasOpenedAvailability
Source§impl Default for CanvasOpenedAvailability
impl Default for CanvasOpenedAvailability
Source§fn default() -> CanvasOpenedAvailability
fn default() -> CanvasOpenedAvailability
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CanvasOpenedAvailability
impl<'de> Deserialize<'de> for CanvasOpenedAvailability
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
impl Eq for CanvasOpenedAvailability
Source§impl PartialEq for CanvasOpenedAvailability
impl PartialEq for CanvasOpenedAvailability
Source§fn eq(&self, other: &CanvasOpenedAvailability) -> bool
fn eq(&self, other: &CanvasOpenedAvailability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CanvasOpenedAvailability
impl Serialize for CanvasOpenedAvailability
impl StructuralPartialEq for CanvasOpenedAvailability
Auto Trait Implementations§
impl Freeze for CanvasOpenedAvailability
impl RefUnwindSafe for CanvasOpenedAvailability
impl Send for CanvasOpenedAvailability
impl Sync for CanvasOpenedAvailability
impl Unpin for CanvasOpenedAvailability
impl UnsafeUnpin for CanvasOpenedAvailability
impl UnwindSafe for CanvasOpenedAvailability
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