pub struct ClusterInformation {
    pub configuration: Option<Cluster>,
    pub http_frontends: Vec<RequestHttpFrontend>,
    pub https_frontends: Vec<RequestHttpFrontend>,
    pub tcp_frontends: Vec<RequestTcpFrontend>,
    pub backends: Vec<AddBackend>,
}Expand description
Information about a given cluster Contains types usually used in requests, because they are readily available in protobuf
Fields§
§configuration: Option<Cluster>§http_frontends: Vec<RequestHttpFrontend>§https_frontends: Vec<RequestHttpFrontend>§tcp_frontends: Vec<RequestTcpFrontend>§backends: Vec<AddBackend>Trait Implementations§
Source§impl Clone for ClusterInformation
 
impl Clone for ClusterInformation
Source§fn clone(&self) -> ClusterInformation
 
fn clone(&self) -> ClusterInformation
Returns a duplicate of the value. Read more
1.0.0 · 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 ClusterInformation
 
impl Debug for ClusterInformation
Source§impl Default for ClusterInformation
 
impl Default for ClusterInformation
Source§impl<'de> Deserialize<'de> for ClusterInformation
 
impl<'de> Deserialize<'de> for ClusterInformation
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
Source§impl Hash for ClusterInformation
 
impl Hash for ClusterInformation
Source§impl Message for ClusterInformation
 
impl Message for ClusterInformation
Source§fn encoded_len(&self) -> usize
 
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
    Self: Sized,
 
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
    Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
    Self: Sized,
 
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
    Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
    &self,
    buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
    Self: Sized,
 
fn encode_length_delimited(
    &self,
    buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
    Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
    Self: Sized,
 
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
    Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
    Self: Default,
 
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
    Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
    Self: Default,
 
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
    Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
    Self: Sized,
 
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
    Self: Sized,
Decodes an instance of the message from a buffer, and merges it into 
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
    Self: Sized,
 
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
    Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into 
self.Source§impl Ord for ClusterInformation
 
impl Ord for ClusterInformation
Source§fn cmp(&self, other: &ClusterInformation) -> Ordering
 
fn cmp(&self, other: &ClusterInformation) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ClusterInformation
 
impl PartialEq for ClusterInformation
Source§impl PartialOrd for ClusterInformation
 
impl PartialOrd for ClusterInformation
Source§impl Serialize for ClusterInformation
 
impl Serialize for ClusterInformation
impl Eq for ClusterInformation
impl StructuralPartialEq for ClusterInformation
Auto Trait Implementations§
impl Freeze for ClusterInformation
impl RefUnwindSafe for ClusterInformation
impl Send for ClusterInformation
impl Sync for ClusterInformation
impl Unpin for ClusterInformation
impl UnwindSafe for ClusterInformation
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
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