pub struct ClusterOwner {
pub company: Option<String>,
pub location: Option<String>,
pub primary_email: Option<String>,
pub primary_name: Option<String>,
pub primary_phone1: Option<String>,
pub primary_phone2: Option<String>,
pub secondary_email: Option<String>,
pub secondary_name: Option<String>,
pub secondary_phone1: Option<String>,
pub secondary_phone2: Option<String>,
}
Fields§
§company: Option<String>
Cluster owner company name.
location: Option<String>
Cluster owner location.
primary_email: Option<String>
Cluster owner primary email address.
primary_name: Option<String>
Cluster owner primary contact name.
primary_phone1: Option<String>
Cluster owner primary contact phone number 1.
primary_phone2: Option<String>
Cluster owner primary contact phone number 2.
secondary_email: Option<String>
Cluster owner secondary email address.
secondary_name: Option<String>
Cluster owner secondary contact name.
secondary_phone1: Option<String>
Cluster owner secondary contact phone number 1.
secondary_phone2: Option<String>
Cluster owner secondary contact phone number 2.
Trait Implementations§
Source§impl Debug for ClusterOwner
impl Debug for ClusterOwner
Source§impl<'de> Deserialize<'de> for ClusterOwner
impl<'de> Deserialize<'de> for ClusterOwner
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 ClusterOwner
impl RefUnwindSafe for ClusterOwner
impl Send for ClusterOwner
impl Sync for ClusterOwner
impl Unpin for ClusterOwner
impl UnwindSafe for ClusterOwner
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
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>
Converts
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>
Converts
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