pub struct Node {
pub host: Option<String>,
pub memcache_full_version: Option<String>,
pub memcache_version: Option<String>,
pub node_id: Option<String>,
pub parameters: Option<MemcacheParameters>,
pub port: Option<i32>,
pub state: Option<String>,
pub zone: Option<String>,
}
Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§host: Option<String>
Output only. Hostname or IP address of the Memcached node used by the clients to connect to the Memcached server on this node.
memcache_full_version: Option<String>
Output only. The full version of memcached server running on this node. e.g. - memcached-1.5.16
memcache_version: Option<String>
Output only. Major version of memcached server running on this node, e.g. MEMCACHE_1_5
node_id: Option<String>
Output only. Identifier of the Memcached node. The node id does not include project or location like the Memcached instance name.
parameters: Option<MemcacheParameters>
User defined parameters currently applied to the node.
port: Option<i32>
Output only. The port number of the Memcached server on this node.
state: Option<String>
Output only. Current state of the Memcached node.
zone: Option<String>
Output only. Location (GCP Zone) for the Memcached node.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Node
impl<'de> Deserialize<'de> for Node
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>,
impl Part for Node
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more