Enum rincon_session::client::CollectionStatus [] [src]

pub enum CollectionStatus {
    NewBorn,
    Unloaded,
    Loaded,
    BeingUnloaded,
    Deleted,
    BeingLoaded,
    Corrupted,
}

This enum defines the possible states a collection can be in.

Variants

New born

Unloaded

Loaded

In the process of being unloaded

Deleted

In the process of being loaded

Indicates a corrupted collection

Trait Implementations

impl Copy for CollectionStatus
[src]

impl<'de> Deserialize<'de> for CollectionStatus
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<CollectionStatus> for CollectionStatus
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Serialize for CollectionStatus
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Clone for CollectionStatus
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CollectionStatus
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations