pub struct GalaxyCluster {
pub id: String,
pub uuid: String,
pub value: String,
pub description: Option<String>,
pub source: Option<String>,
pub authors: Vec<String>,
pub version: Option<String>,
pub elements: Vec<GalaxyElement>,
pub meta: Option<Value>,
pub tag_name: Option<String>,
}Fields§
§id: String§uuid: String§value: String§description: Option<String>§source: Option<String>§version: Option<String>§elements: Vec<GalaxyElement>§meta: Option<Value>§tag_name: Option<String>Trait Implementations§
Source§impl Clone for GalaxyCluster
impl Clone for GalaxyCluster
Source§fn clone(&self) -> GalaxyCluster
fn clone(&self) -> GalaxyCluster
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 GalaxyCluster
impl Debug for GalaxyCluster
Source§impl<'de> Deserialize<'de> for GalaxyCluster
impl<'de> Deserialize<'de> for GalaxyCluster
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 GalaxyCluster
impl RefUnwindSafe for GalaxyCluster
impl Send for GalaxyCluster
impl Sync for GalaxyCluster
impl Unpin for GalaxyCluster
impl UnwindSafe for GalaxyCluster
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