[][src]Struct helm_api::chart::Chart

pub struct Chart {
    pub metadata: SingularPtrField<Metadata>,
    pub templates: RepeatedField<Template>,
    pub dependencies: RepeatedField<Chart>,
    pub values: SingularPtrField<Config>,
    pub files: RepeatedField<Any>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

metadata: SingularPtrField<Metadata>templates: RepeatedField<Template>dependencies: RepeatedField<Chart>values: SingularPtrField<Config>files: RepeatedField<Any>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl Chart[src]

pub fn new() -> Chart[src]

pub fn get_metadata(&self) -> &Metadata[src]

pub fn clear_metadata(&mut self)[src]

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

pub fn set_metadata(&mut self, v: Metadata)[src]

pub fn mut_metadata(&mut self) -> &mut Metadata[src]

pub fn take_metadata(&mut self) -> Metadata[src]

pub fn get_templates(&self) -> &[Template][src]

pub fn clear_templates(&mut self)[src]

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

pub fn mut_templates(&mut self) -> &mut RepeatedField<Template>[src]

pub fn take_templates(&mut self) -> RepeatedField<Template>[src]

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

pub fn clear_dependencies(&mut self)[src]

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

pub fn mut_dependencies(&mut self) -> &mut RepeatedField<Chart>[src]

pub fn take_dependencies(&mut self) -> RepeatedField<Chart>[src]

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

pub fn clear_values(&mut self)[src]

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

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

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

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

pub fn get_files(&self) -> &[Any][src]

pub fn clear_files(&mut self)[src]

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

pub fn mut_files(&mut self) -> &mut RepeatedField<Any>[src]

pub fn take_files(&mut self) -> RepeatedField<Any>[src]

Trait Implementations

impl Default for Chart[src]

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

impl Clone for Chart[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Chart> for Chart[src]

impl Debug for Chart[src]

impl Message for Chart[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 Chart[src]

impl ProtobufValue for Chart[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 Chart

impl Sync for Chart

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]