helm-api 0.1.0

Helm client library for Rust
// This file is generated by rust-protobuf 2.7.0. Do not edit
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

#![cfg_attr(rustfmt, rustfmt_skip)]

#![allow(box_pointers)]
#![allow(dead_code)]
#![allow(missing_docs)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(trivial_casts)]
#![allow(unsafe_code)]
#![allow(unused_imports)]
#![allow(unused_results)]
//! Generated file from `hapi/release/info.proto`

use protobuf::Message as Message_imported_for_functions;
use protobuf::ProtobufEnum as ProtobufEnum_imported_for_functions;

/// Generated files are compatible only with the same version
/// of protobuf runtime.
const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_7_0;

#[derive(PartialEq,Clone,Default)]
pub struct Info {
    // message fields
    pub status: ::protobuf::SingularPtrField<super::status::Status>,
    pub first_deployed: ::protobuf::SingularPtrField<::protobuf::well_known_types::Timestamp>,
    pub last_deployed: ::protobuf::SingularPtrField<::protobuf::well_known_types::Timestamp>,
    pub deleted: ::protobuf::SingularPtrField<::protobuf::well_known_types::Timestamp>,
    pub Description: ::std::string::String,
    // special fields
    pub unknown_fields: ::protobuf::UnknownFields,
    pub cached_size: ::protobuf::CachedSize,
}

impl<'a> ::std::default::Default for &'a Info {
    fn default() -> &'a Info {
        <Info as ::protobuf::Message>::default_instance()
    }
}

impl Info {
    pub fn new() -> Info {
        ::std::default::Default::default()
    }

    // .hapi.release.Status status = 1;


    pub fn get_status(&self) -> &super::status::Status {
        self.status.as_ref().unwrap_or_else(|| super::status::Status::default_instance())
    }
    pub fn clear_status(&mut self) {
        self.status.clear();
    }

    pub fn has_status(&self) -> bool {
        self.status.is_some()
    }

    // Param is passed by value, moved
    pub fn set_status(&mut self, v: super::status::Status) {
        self.status = ::protobuf::SingularPtrField::some(v);
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_status(&mut self) -> &mut super::status::Status {
        if self.status.is_none() {
            self.status.set_default();
        }
        self.status.as_mut().unwrap()
    }

    // Take field
    pub fn take_status(&mut self) -> super::status::Status {
        self.status.take().unwrap_or_else(|| super::status::Status::new())
    }

    // .google.protobuf.Timestamp first_deployed = 2;


    pub fn get_first_deployed(&self) -> &::protobuf::well_known_types::Timestamp {
        self.first_deployed.as_ref().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::default_instance())
    }
    pub fn clear_first_deployed(&mut self) {
        self.first_deployed.clear();
    }

    pub fn has_first_deployed(&self) -> bool {
        self.first_deployed.is_some()
    }

    // Param is passed by value, moved
    pub fn set_first_deployed(&mut self, v: ::protobuf::well_known_types::Timestamp) {
        self.first_deployed = ::protobuf::SingularPtrField::some(v);
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_first_deployed(&mut self) -> &mut ::protobuf::well_known_types::Timestamp {
        if self.first_deployed.is_none() {
            self.first_deployed.set_default();
        }
        self.first_deployed.as_mut().unwrap()
    }

    // Take field
    pub fn take_first_deployed(&mut self) -> ::protobuf::well_known_types::Timestamp {
        self.first_deployed.take().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::new())
    }

    // .google.protobuf.Timestamp last_deployed = 3;


    pub fn get_last_deployed(&self) -> &::protobuf::well_known_types::Timestamp {
        self.last_deployed.as_ref().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::default_instance())
    }
    pub fn clear_last_deployed(&mut self) {
        self.last_deployed.clear();
    }

    pub fn has_last_deployed(&self) -> bool {
        self.last_deployed.is_some()
    }

    // Param is passed by value, moved
    pub fn set_last_deployed(&mut self, v: ::protobuf::well_known_types::Timestamp) {
        self.last_deployed = ::protobuf::SingularPtrField::some(v);
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_last_deployed(&mut self) -> &mut ::protobuf::well_known_types::Timestamp {
        if self.last_deployed.is_none() {
            self.last_deployed.set_default();
        }
        self.last_deployed.as_mut().unwrap()
    }

    // Take field
    pub fn take_last_deployed(&mut self) -> ::protobuf::well_known_types::Timestamp {
        self.last_deployed.take().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::new())
    }

    // .google.protobuf.Timestamp deleted = 4;


    pub fn get_deleted(&self) -> &::protobuf::well_known_types::Timestamp {
        self.deleted.as_ref().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::default_instance())
    }
    pub fn clear_deleted(&mut self) {
        self.deleted.clear();
    }

    pub fn has_deleted(&self) -> bool {
        self.deleted.is_some()
    }

    // Param is passed by value, moved
    pub fn set_deleted(&mut self, v: ::protobuf::well_known_types::Timestamp) {
        self.deleted = ::protobuf::SingularPtrField::some(v);
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_deleted(&mut self) -> &mut ::protobuf::well_known_types::Timestamp {
        if self.deleted.is_none() {
            self.deleted.set_default();
        }
        self.deleted.as_mut().unwrap()
    }

    // Take field
    pub fn take_deleted(&mut self) -> ::protobuf::well_known_types::Timestamp {
        self.deleted.take().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::new())
    }

    // string Description = 5;


    pub fn get_Description(&self) -> &str {
        &self.Description
    }
    pub fn clear_Description(&mut self) {
        self.Description.clear();
    }

    // Param is passed by value, moved
    pub fn set_Description(&mut self, v: ::std::string::String) {
        self.Description = v;
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_Description(&mut self) -> &mut ::std::string::String {
        &mut self.Description
    }

    // Take field
    pub fn take_Description(&mut self) -> ::std::string::String {
        ::std::mem::replace(&mut self.Description, ::std::string::String::new())
    }
}

impl ::protobuf::Message for Info {
    fn is_initialized(&self) -> bool {
        for v in &self.status {
            if !v.is_initialized() {
                return false;
            }
        };
        for v in &self.first_deployed {
            if !v.is_initialized() {
                return false;
            }
        };
        for v in &self.last_deployed {
            if !v.is_initialized() {
                return false;
            }
        };
        for v in &self.deleted {
            if !v.is_initialized() {
                return false;
            }
        };
        true
    }

    fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
        while !is.eof()? {
            let (field_number, wire_type) = is.read_tag_unpack()?;
            match field_number {
                1 => {
                    ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.status)?;
                },
                2 => {
                    ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.first_deployed)?;
                },
                3 => {
                    ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.last_deployed)?;
                },
                4 => {
                    ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.deleted)?;
                },
                5 => {
                    ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.Description)?;
                },
                _ => {
                    ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
                },
            };
        }
        ::std::result::Result::Ok(())
    }

    // Compute sizes of nested messages
    #[allow(unused_variables)]
    fn compute_size(&self) -> u32 {
        let mut my_size = 0;
        if let Some(ref v) = self.status.as_ref() {
            let len = v.compute_size();
            my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
        }
        if let Some(ref v) = self.first_deployed.as_ref() {
            let len = v.compute_size();
            my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
        }
        if let Some(ref v) = self.last_deployed.as_ref() {
            let len = v.compute_size();
            my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
        }
        if let Some(ref v) = self.deleted.as_ref() {
            let len = v.compute_size();
            my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
        }
        if !self.Description.is_empty() {
            my_size += ::protobuf::rt::string_size(5, &self.Description);
        }
        my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
        self.cached_size.set(my_size);
        my_size
    }

    fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
        if let Some(ref v) = self.status.as_ref() {
            os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited)?;
            os.write_raw_varint32(v.get_cached_size())?;
            v.write_to_with_cached_sizes(os)?;
        }
        if let Some(ref v) = self.first_deployed.as_ref() {
            os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited)?;
            os.write_raw_varint32(v.get_cached_size())?;
            v.write_to_with_cached_sizes(os)?;
        }
        if let Some(ref v) = self.last_deployed.as_ref() {
            os.write_tag(3, ::protobuf::wire_format::WireTypeLengthDelimited)?;
            os.write_raw_varint32(v.get_cached_size())?;
            v.write_to_with_cached_sizes(os)?;
        }
        if let Some(ref v) = self.deleted.as_ref() {
            os.write_tag(4, ::protobuf::wire_format::WireTypeLengthDelimited)?;
            os.write_raw_varint32(v.get_cached_size())?;
            v.write_to_with_cached_sizes(os)?;
        }
        if !self.Description.is_empty() {
            os.write_string(5, &self.Description)?;
        }
        os.write_unknown_fields(self.get_unknown_fields())?;
        ::std::result::Result::Ok(())
    }

    fn get_cached_size(&self) -> u32 {
        self.cached_size.get()
    }

    fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
        &self.unknown_fields
    }

    fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
        &mut self.unknown_fields
    }

    fn as_any(&self) -> &::std::any::Any {
        self as &::std::any::Any
    }
    fn as_any_mut(&mut self) -> &mut ::std::any::Any {
        self as &mut ::std::any::Any
    }
    fn into_any(self: Box<Self>) -> ::std::boxed::Box<::std::any::Any> {
        self
    }

    fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
        Self::descriptor_static()
    }

    fn new() -> Info {
        Info::new()
    }

    fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
        static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
            lock: ::protobuf::lazy::ONCE_INIT,
            ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
        };
        unsafe {
            descriptor.get(|| {
                let mut fields = ::std::vec::Vec::new();
                fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::status::Status>>(
                    "status",
                    |m: &Info| { &m.status },
                    |m: &mut Info| { &mut m.status },
                ));
                fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<::protobuf::well_known_types::Timestamp>>(
                    "first_deployed",
                    |m: &Info| { &m.first_deployed },
                    |m: &mut Info| { &mut m.first_deployed },
                ));
                fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<::protobuf::well_known_types::Timestamp>>(
                    "last_deployed",
                    |m: &Info| { &m.last_deployed },
                    |m: &mut Info| { &mut m.last_deployed },
                ));
                fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<::protobuf::well_known_types::Timestamp>>(
                    "deleted",
                    |m: &Info| { &m.deleted },
                    |m: &mut Info| { &mut m.deleted },
                ));
                fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
                    "Description",
                    |m: &Info| { &m.Description },
                    |m: &mut Info| { &mut m.Description },
                ));
                ::protobuf::reflect::MessageDescriptor::new::<Info>(
                    "Info",
                    fields,
                    file_descriptor_proto()
                )
            })
        }
    }

    fn default_instance() -> &'static Info {
        static mut instance: ::protobuf::lazy::Lazy<Info> = ::protobuf::lazy::Lazy {
            lock: ::protobuf::lazy::ONCE_INIT,
            ptr: 0 as *const Info,
        };
        unsafe {
            instance.get(Info::new)
        }
    }
}

impl ::protobuf::Clear for Info {
    fn clear(&mut self) {
        self.status.clear();
        self.first_deployed.clear();
        self.last_deployed.clear();
        self.deleted.clear();
        self.Description.clear();
        self.unknown_fields.clear();
    }
}

impl ::std::fmt::Debug for Info {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        ::protobuf::text_format::fmt(self, f)
    }
}

impl ::protobuf::reflect::ProtobufValue for Info {
    fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef {
        ::protobuf::reflect::ProtobufValueRef::Message(self)
    }
}

static file_descriptor_proto_data: &'static [u8] = b"\
    \n\x17hapi/release/info.proto\x12\x0chapi.release\x1a\x1fgoogle/protobuf\
    /timestamp.proto\x1a\x19hapi/release/status.proto\"\x90\x02\n\x04Info\
    \x12,\n\x06status\x18\x01\x20\x01(\x0b2\x14.hapi.release.StatusR\x06stat\
    us\x12A\n\x0efirst_deployed\x18\x02\x20\x01(\x0b2\x1a.google.protobuf.Ti\
    mestampR\rfirstDeployed\x12?\n\rlast_deployed\x18\x03\x20\x01(\x0b2\x1a.\
    google.protobuf.TimestampR\x0clastDeployed\x124\n\x07deleted\x18\x04\x20\
    \x01(\x0b2\x1a.google.protobuf.TimestampR\x07deleted\x12\x20\n\x0bDescri\
    ption\x18\x05\x20\x01(\tR\x0bDescriptionB\tZ\x07releaseb\x06proto3\
";

static mut file_descriptor_proto_lazy: ::protobuf::lazy::Lazy<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::lazy::Lazy {
    lock: ::protobuf::lazy::ONCE_INIT,
    ptr: 0 as *const ::protobuf::descriptor::FileDescriptorProto,
};

fn parse_descriptor_proto() -> ::protobuf::descriptor::FileDescriptorProto {
    ::protobuf::parse_from_bytes(file_descriptor_proto_data).unwrap()
}

pub fn file_descriptor_proto() -> &'static ::protobuf::descriptor::FileDescriptorProto {
    unsafe {
        file_descriptor_proto_lazy.get(|| {
            parse_descriptor_proto()
        })
    }
}