pub struct ElastiCacheCluster {
pub cache_cluster_id: String,
pub cache_cluster_status: String,
pub engine: String,
pub engine_version: String,
pub cache_node_type: String,
pub num_cache_nodes: i32,
pub replication_group_id: Option<String>,
pub port: Option<i32>,
pub host_port: Option<u16>,
pub container_id: Option<String>,
}Fields§
§cache_cluster_id: String§cache_cluster_status: String§engine: String§engine_version: String§cache_node_type: String§num_cache_nodes: i32§replication_group_id: Option<String>§port: Option<i32>§host_port: Option<u16>§container_id: Option<String>Trait Implementations§
Source§impl Clone for ElastiCacheCluster
impl Clone for ElastiCacheCluster
Source§fn clone(&self) -> ElastiCacheCluster
fn clone(&self) -> ElastiCacheCluster
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 moreSource§impl Debug for ElastiCacheCluster
impl Debug for ElastiCacheCluster
Source§impl<'de> Deserialize<'de> for ElastiCacheCluster
impl<'de> Deserialize<'de> for ElastiCacheCluster
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
Auto Trait Implementations§
impl Freeze for ElastiCacheCluster
impl RefUnwindSafe for ElastiCacheCluster
impl Send for ElastiCacheCluster
impl Sync for ElastiCacheCluster
impl Unpin for ElastiCacheCluster
impl UnsafeUnpin for ElastiCacheCluster
impl UnwindSafe for ElastiCacheCluster
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