pub struct HelmListItem {
pub name: String,
pub namespace: String,
pub revision: String,
pub updated: String,
pub status: HelmDeployStatus,
pub chart: String,
pub app_version: String,
}Fields§
§name: String§namespace: String§revision: String§updated: String§status: HelmDeployStatus§chart: String§app_version: StringTrait Implementations§
Source§impl Clone for HelmListItem
impl Clone for HelmListItem
Source§fn clone(&self) -> HelmListItem
fn clone(&self) -> HelmListItem
Returns a copy 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 HelmListItem
impl Debug for HelmListItem
Source§impl<'de> Deserialize<'de> for HelmListItem
impl<'de> Deserialize<'de> for HelmListItem
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 HelmListItem
impl RefUnwindSafe for HelmListItem
impl Send for HelmListItem
impl Sync for HelmListItem
impl Unpin for HelmListItem
impl UnwindSafe for HelmListItem
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