Struct temporal_sdk_core::protos::temporal::api::workflowservice::v1::GetClusterInfoResponse[][src]

pub struct GetClusterInfoResponse {
    pub supported_clients: HashMap<String, String>,
    pub server_version: String,
    pub cluster_id: String,
    pub version_info: Option<VersionInfo>,
    pub cluster_name: String,
    pub history_shard_count: i32,
}

GetClusterInfoResponse contains information about Temporal cluster.

Fields

supported_clients: HashMap<String, String>

Key is client name i.e “temporal-go”, “temporal-java”, or “temporal-cli”. Value is ranges of supported versions of this client i.e “>1.1.1 <=1.4.0 || ^5.0.0”.

server_version: Stringcluster_id: Stringversion_info: Option<VersionInfo>cluster_name: Stringhistory_shard_count: i32

Trait Implementations

impl Clone for GetClusterInfoResponse[src]

impl Debug for GetClusterInfoResponse[src]

impl Default for GetClusterInfoResponse[src]

impl Message for GetClusterInfoResponse[src]

impl PartialEq<GetClusterInfoResponse> for GetClusterInfoResponse[src]

impl StructuralPartialEq for GetClusterInfoResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FutureExt for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]