#[non_exhaustive]pub struct SoleTenantNodeType {
pub node_name: String,
/* private fields */
}Expand description
A Sole Tenant node type.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.node_name: StringName of the Sole Tenant node. Consult https://cloud.google.com/compute/docs/nodes/sole-tenant-nodes
Implementations§
Trait Implementations§
Source§impl Clone for SoleTenantNodeType
impl Clone for SoleTenantNodeType
Source§fn clone(&self) -> SoleTenantNodeType
fn clone(&self) -> SoleTenantNodeType
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 SoleTenantNodeType
impl Debug for SoleTenantNodeType
Source§impl Default for SoleTenantNodeType
impl Default for SoleTenantNodeType
Source§fn default() -> SoleTenantNodeType
fn default() -> SoleTenantNodeType
Returns the “default value” for a type. Read more
Source§impl Message for SoleTenantNodeType
impl Message for SoleTenantNodeType
Source§impl PartialEq for SoleTenantNodeType
impl PartialEq for SoleTenantNodeType
impl StructuralPartialEq for SoleTenantNodeType
Auto Trait Implementations§
impl Freeze for SoleTenantNodeType
impl RefUnwindSafe for SoleTenantNodeType
impl Send for SoleTenantNodeType
impl Sync for SoleTenantNodeType
impl Unpin for SoleTenantNodeType
impl UnsafeUnpin for SoleTenantNodeType
impl UnwindSafe for SoleTenantNodeType
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