pub struct Cluster {
pub name: String,
pub id: Uuid,
pub vendor: Vendor,
pub registered: bool,
pub location: Location,
pub description: Option<String>,
pub version: String,
pub platform_version: Option<String>,
pub software: Option<Software>,
}Fields§
§name: String§id: Uuid§vendor: Vendor§registered: bool§location: Location§description: Option<String>§version: String§platform_version: Option<String>§software: Option<Software>Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Cluster
impl<'de> Deserialize<'de> for Cluster
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 From<RegisterClusterDto> for Cluster
impl From<RegisterClusterDto> for Cluster
source§fn from(value: RegisterClusterDto) -> Self
fn from(value: RegisterClusterDto) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for Cluster
impl Send for Cluster
impl Sync for Cluster
impl Unpin for Cluster
impl UnwindSafe for Cluster
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