pub struct ExportProject {
pub name: String,
pub version: Option<String>,
}Expand description
Project metadata relevant to an export.
Fields§
§name: StringProject name, used as the default namespace and chart name.
version: Option<String>Free-form project version, used as the default chart version.
Trait Implementations§
Source§impl Clone for ExportProject
impl Clone for ExportProject
Source§fn clone(&self) -> ExportProject
fn clone(&self) -> ExportProject
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 moreAuto Trait Implementations§
impl Freeze for ExportProject
impl RefUnwindSafe for ExportProject
impl Send for ExportProject
impl Sync for ExportProject
impl Unpin for ExportProject
impl UnsafeUnpin for ExportProject
impl UnwindSafe for ExportProject
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