pub struct InstalledChart {
pub name: String,
pub app_version: String,
pub revision: String,
pub updated: String,
pub status: String,
pub chart: String,
}Expand description
A representation of an installed chart.
Fields§
§name: StringThe chart name
app_version: StringThe version of the app this chart installed
revision: StringThe chart revision
updated: StringDate/time when the chart was last updated
status: StringStatus of the installed chart
chart: StringThe ID of the chart that is installed
Trait Implementations§
Source§impl Debug for InstalledChart
impl Debug for InstalledChart
Source§impl<'de> Deserialize<'de> for InstalledChart
impl<'de> Deserialize<'de> for InstalledChart
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 InstalledChart
impl RefUnwindSafe for InstalledChart
impl Send for InstalledChart
impl Sync for InstalledChart
impl Unpin for InstalledChart
impl UnwindSafe for InstalledChart
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