pub enum StorePhase {
Unavailable,
Connecting,
Ready,
}Expand description
How far along the store connection is.
Variants§
No store on this platform, or no backend installed. Nothing is owned and nothing can be bought.
Connecting
A backend is installed and still talking to the store. Prices are not known yet; owned entitlements may not be known yet either.
Ready
Product and entitlement information has been received at least once.
Trait Implementations§
Source§impl Clone for StorePhase
impl Clone for StorePhase
Source§fn clone(&self) -> StorePhase
fn clone(&self) -> StorePhase
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 StorePhase
Source§impl Debug for StorePhase
impl Debug for StorePhase
Source§impl Default for StorePhase
impl Default for StorePhase
Source§fn default() -> StorePhase
fn default() -> StorePhase
Returns the “default value” for a type. Read more
impl Eq for StorePhase
Source§impl PartialEq for StorePhase
impl PartialEq for StorePhase
impl StructuralPartialEq for StorePhase
Auto Trait Implementations§
impl Freeze for StorePhase
impl RefUnwindSafe for StorePhase
impl Send for StorePhase
impl Sync for StorePhase
impl Unpin for StorePhase
impl UnsafeUnpin for StorePhase
impl UnwindSafe for StorePhase
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