[][src]Struct helm_api::status::Status

pub struct Status {
    pub code: Status_Code,
    pub resources: String,
    pub notes: String,
    pub last_test_suite_run: SingularPtrField<TestSuite>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

code: Status_Coderesources: Stringnotes: Stringlast_test_suite_run: SingularPtrField<TestSuite>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl Status[src]

pub fn new() -> Status[src]

pub fn get_code(&self) -> Status_Code[src]

pub fn clear_code(&mut self)[src]

pub fn set_code(&mut self, v: Status_Code)[src]

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

pub fn clear_resources(&mut self)[src]

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

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

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

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

pub fn clear_notes(&mut self)[src]

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

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

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

pub fn get_last_test_suite_run(&self) -> &TestSuite[src]

pub fn clear_last_test_suite_run(&mut self)[src]

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

pub fn set_last_test_suite_run(&mut self, v: TestSuite)[src]

pub fn mut_last_test_suite_run(&mut self) -> &mut TestSuite[src]

pub fn take_last_test_suite_run(&mut self) -> TestSuite[src]

Trait Implementations

impl Default for Status[src]

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

impl Clone for Status[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Status> for Status[src]

impl Debug for Status[src]

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

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

impl Sync for Status

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]