[][src]Struct helm_api::release::Release

pub struct Release {
    pub name: String,
    pub info: SingularPtrField<Info>,
    pub chart: SingularPtrField<Chart>,
    pub config: SingularPtrField<Config>,
    pub manifest: String,
    pub hooks: RepeatedField<Hook>,
    pub version: i32,
    pub namespace: String,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

name: Stringinfo: SingularPtrField<Info>chart: SingularPtrField<Chart>config: SingularPtrField<Config>manifest: Stringhooks: RepeatedField<Hook>version: i32namespace: Stringunknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl Release[src]

pub fn new() -> Release[src]

pub fn get_name(&self) -> &str[src]

pub fn clear_name(&mut self)[src]

pub fn set_name(&mut self, v: String)[src]

pub fn mut_name(&mut self) -> &mut String[src]

pub fn take_name(&mut self) -> String[src]

pub fn get_info(&self) -> &Info[src]

pub fn clear_info(&mut self)[src]

pub fn has_info(&self) -> bool[src]

pub fn set_info(&mut self, v: Info)[src]

pub fn mut_info(&mut self) -> &mut Info[src]

pub fn take_info(&mut self) -> Info[src]

pub fn get_chart(&self) -> &Chart[src]

pub fn clear_chart(&mut self)[src]

pub fn has_chart(&self) -> bool[src]

pub fn set_chart(&mut self, v: Chart)[src]

pub fn mut_chart(&mut self) -> &mut Chart[src]

pub fn take_chart(&mut self) -> Chart[src]

pub fn get_config(&self) -> &Config[src]

pub fn clear_config(&mut self)[src]

pub fn has_config(&self) -> bool[src]

pub fn set_config(&mut self, v: Config)[src]

pub fn mut_config(&mut self) -> &mut Config[src]

pub fn take_config(&mut self) -> Config[src]

pub fn get_manifest(&self) -> &str[src]

pub fn clear_manifest(&mut self)[src]

pub fn set_manifest(&mut self, v: String)[src]

pub fn mut_manifest(&mut self) -> &mut String[src]

pub fn take_manifest(&mut self) -> String[src]

pub fn get_hooks(&self) -> &[Hook][src]

pub fn clear_hooks(&mut self)[src]

pub fn set_hooks(&mut self, v: RepeatedField<Hook>)[src]

pub fn mut_hooks(&mut self) -> &mut RepeatedField<Hook>[src]

pub fn take_hooks(&mut self) -> RepeatedField<Hook>[src]

pub fn get_version(&self) -> i32[src]

pub fn clear_version(&mut self)[src]

pub fn set_version(&mut self, v: i32)[src]

pub fn get_namespace(&self) -> &str[src]

pub fn clear_namespace(&mut self)[src]

pub fn set_namespace(&mut self, v: String)[src]

pub fn mut_namespace(&mut self) -> &mut String[src]

pub fn take_namespace(&mut self) -> String[src]

Trait Implementations

impl Default for Release[src]

impl<'a> Default for &'a Release[src]

impl Clone for Release[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Release> for Release[src]

impl Debug for Release[src]

impl Message for Release[src]

fn write_to(&self, os: &mut CodedOutputStream) -> Result<(), ProtobufError>[src]

Write the message to the stream. Read more

fn write_length_delimited_to(
    &self,
    os: &mut CodedOutputStream
) -> Result<(), ProtobufError>
[src]

Write the message to the stream prepending the message with message length encoded as varint. Read more

fn write_length_delimited_to_vec(
    &self,
    vec: &mut Vec<u8>
) -> Result<(), ProtobufError>
[src]

Write the message to the vec, prepend the message with message length encoded as varint. Read more

fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), ProtobufError>[src]

Update this message object with fields read from given stream.

fn check_initialized(&self) -> Result<(), ProtobufError>[src]

Check if all required fields of this object are initialized.

fn write_to_writer(&self, w: &mut dyn Write) -> Result<(), ProtobufError>[src]

Write the message to the writer.

fn write_to_vec(&self, v: &mut Vec<u8>) -> Result<(), ProtobufError>[src]

Write the message to bytes vec.

fn write_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to bytes vec.

fn write_length_delimited_to_writer(
    &self,
    w: &mut dyn Write
) -> Result<(), ProtobufError>
[src]

Write the message to the writer, prepend the message with message length encoded as varint. Read more

fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to the bytes vec, prepend the message with message length encoded as varint. Read more

fn type_id(&self) -> TypeId[src]

Get type id for downcasting.

impl Clear for Release[src]

impl ProtobufValue for Release[src]

fn as_any(&self) -> &(dyn Any + 'static)[src]

Convert to Any

fn is_non_zero(&self) -> bool[src]

Is value non-zero?

fn as_ref_copy(&self) -> ProtobufValueRef<'static>[src]

Return ProtobufValueRef if self is Copy. Read more

Auto Trait Implementations

impl Send for Release

impl Sync for Release

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]