azure_storage_queue 0.6.0

Microsoft Azure Queue client library for Rust
Documentation
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
//
// Code generated by Microsoft (R) Rust Code Generator. DO NOT EDIT.

/// The geo replication status.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum GeoReplicationStatus {
    /// The geo replication is bootstrap.
    Bootstrap,

    /// The geo replication is live.
    Live,

    /// The geo replication is unavailable.
    Unavailable,

    /// Any other value not defined in `GeoReplicationStatus`.
    UnknownValue(String),
}

/// Specify to include additional, optional information.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum ListQueuesIncludeType {
    /// Include queue metadata.
    Metadata,
}