pub struct GitLabChart {
pub values: Option<BTreeMap<String, Value>>,
pub version: Option<String>,
}Expand description
The specification of GitLab Chart that is used to deploy the instance.
Fields§
§values: Option<BTreeMap<String, Value>>ChartValues is the set of Helm values that is used to render the GitLab Chart.
version: Option<String>ChartVersion is the semantic version of the GitLab Chart.
Trait Implementations§
Source§impl Clone for GitLabChart
impl Clone for GitLabChart
Source§fn clone(&self) -> GitLabChart
fn clone(&self) -> GitLabChart
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GitLabChart
impl Debug for GitLabChart
Source§impl Default for GitLabChart
impl Default for GitLabChart
Source§fn default() -> GitLabChart
fn default() -> GitLabChart
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitLabChart
impl<'de> Deserialize<'de> for GitLabChart
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 PartialEq for GitLabChart
impl PartialEq for GitLabChart
Source§impl Serialize for GitLabChart
impl Serialize for GitLabChart
impl StructuralPartialEq for GitLabChart
Auto Trait Implementations§
impl Freeze for GitLabChart
impl RefUnwindSafe for GitLabChart
impl Send for GitLabChart
impl Sync for GitLabChart
impl Unpin for GitLabChart
impl UnsafeUnpin for GitLabChart
impl UnwindSafe for GitLabChart
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