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/test_run.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 TestRun {
    // message fields
    pub name: ::std::string::String,
    pub status: TestRun_Status,
    pub info: ::std::string::String,
    pub started_at: ::protobuf::SingularPtrField<::protobuf::well_known_types::Timestamp>,
    pub completed_at: ::protobuf::SingularPtrField<::protobuf::well_known_types::Timestamp>,
    // special fields
    pub unknown_fields: ::protobuf::UnknownFields,
    pub cached_size: ::protobuf::CachedSize,
}

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

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

    // string name = 1;


    pub fn get_name(&self) -> &str {
        &self.name
    }
    pub fn clear_name(&mut self) {
        self.name.clear();
    }

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

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

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

    // .hapi.release.TestRun.Status status = 2;


    pub fn get_status(&self) -> TestRun_Status {
        self.status
    }
    pub fn clear_status(&mut self) {
        self.status = TestRun_Status::UNKNOWN;
    }

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

    // string info = 3;


    pub fn get_info(&self) -> &str {
        &self.info
    }
    pub fn clear_info(&mut self) {
        self.info.clear();
    }

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

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

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

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


    pub fn get_started_at(&self) -> &::protobuf::well_known_types::Timestamp {
        self.started_at.as_ref().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::default_instance())
    }
    pub fn clear_started_at(&mut self) {
        self.started_at.clear();
    }

    pub fn has_started_at(&self) -> bool {
        self.started_at.is_some()
    }

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

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

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

    // .google.protobuf.Timestamp completed_at = 5;


    pub fn get_completed_at(&self) -> &::protobuf::well_known_types::Timestamp {
        self.completed_at.as_ref().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::default_instance())
    }
    pub fn clear_completed_at(&mut self) {
        self.completed_at.clear();
    }

    pub fn has_completed_at(&self) -> bool {
        self.completed_at.is_some()
    }

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

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

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

impl ::protobuf::Message for TestRun {
    fn is_initialized(&self) -> bool {
        for v in &self.started_at {
            if !v.is_initialized() {
                return false;
            }
        };
        for v in &self.completed_at {
            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_proto3_string_into(wire_type, is, &mut self.name)?;
                },
                2 => {
                    ::protobuf::rt::read_proto3_enum_with_unknown_fields_into(wire_type, is, &mut self.status, 2, &mut self.unknown_fields)?
                },
                3 => {
                    ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.info)?;
                },
                4 => {
                    ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.started_at)?;
                },
                5 => {
                    ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.completed_at)?;
                },
                _ => {
                    ::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 !self.name.is_empty() {
            my_size += ::protobuf::rt::string_size(1, &self.name);
        }
        if self.status != TestRun_Status::UNKNOWN {
            my_size += ::protobuf::rt::enum_size(2, self.status);
        }
        if !self.info.is_empty() {
            my_size += ::protobuf::rt::string_size(3, &self.info);
        }
        if let Some(ref v) = self.started_at.as_ref() {
            let len = v.compute_size();
            my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
        }
        if let Some(ref v) = self.completed_at.as_ref() {
            let len = v.compute_size();
            my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
        }
        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 !self.name.is_empty() {
            os.write_string(1, &self.name)?;
        }
        if self.status != TestRun_Status::UNKNOWN {
            os.write_enum(2, self.status.value())?;
        }
        if !self.info.is_empty() {
            os.write_string(3, &self.info)?;
        }
        if let Some(ref v) = self.started_at.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 let Some(ref v) = self.completed_at.as_ref() {
            os.write_tag(5, ::protobuf::wire_format::WireTypeLengthDelimited)?;
            os.write_raw_varint32(v.get_cached_size())?;
            v.write_to_with_cached_sizes(os)?;
        }
        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() -> TestRun {
        TestRun::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_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
                    "name",
                    |m: &TestRun| { &m.name },
                    |m: &mut TestRun| { &mut m.name },
                ));
                fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<TestRun_Status>>(
                    "status",
                    |m: &TestRun| { &m.status },
                    |m: &mut TestRun| { &mut m.status },
                ));
                fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
                    "info",
                    |m: &TestRun| { &m.info },
                    |m: &mut TestRun| { &mut m.info },
                ));
                fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<::protobuf::well_known_types::Timestamp>>(
                    "started_at",
                    |m: &TestRun| { &m.started_at },
                    |m: &mut TestRun| { &mut m.started_at },
                ));
                fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<::protobuf::well_known_types::Timestamp>>(
                    "completed_at",
                    |m: &TestRun| { &m.completed_at },
                    |m: &mut TestRun| { &mut m.completed_at },
                ));
                ::protobuf::reflect::MessageDescriptor::new::<TestRun>(
                    "TestRun",
                    fields,
                    file_descriptor_proto()
                )
            })
        }
    }

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

impl ::protobuf::Clear for TestRun {
    fn clear(&mut self) {
        self.name.clear();
        self.status = TestRun_Status::UNKNOWN;
        self.info.clear();
        self.started_at.clear();
        self.completed_at.clear();
        self.unknown_fields.clear();
    }
}

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

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

#[derive(Clone,PartialEq,Eq,Debug,Hash)]
pub enum TestRun_Status {
    UNKNOWN = 0,
    SUCCESS = 1,
    FAILURE = 2,
    RUNNING = 3,
}

impl ::protobuf::ProtobufEnum for TestRun_Status {
    fn value(&self) -> i32 {
        *self as i32
    }

    fn from_i32(value: i32) -> ::std::option::Option<TestRun_Status> {
        match value {
            0 => ::std::option::Option::Some(TestRun_Status::UNKNOWN),
            1 => ::std::option::Option::Some(TestRun_Status::SUCCESS),
            2 => ::std::option::Option::Some(TestRun_Status::FAILURE),
            3 => ::std::option::Option::Some(TestRun_Status::RUNNING),
            _ => ::std::option::Option::None
        }
    }

    fn values() -> &'static [Self] {
        static values: &'static [TestRun_Status] = &[
            TestRun_Status::UNKNOWN,
            TestRun_Status::SUCCESS,
            TestRun_Status::FAILURE,
            TestRun_Status::RUNNING,
        ];
        values
    }

    fn enum_descriptor_static() -> &'static ::protobuf::reflect::EnumDescriptor {
        static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::lazy::Lazy {
            lock: ::protobuf::lazy::ONCE_INIT,
            ptr: 0 as *const ::protobuf::reflect::EnumDescriptor,
        };
        unsafe {
            descriptor.get(|| {
                ::protobuf::reflect::EnumDescriptor::new("TestRun_Status", file_descriptor_proto())
            })
        }
    }
}

impl ::std::marker::Copy for TestRun_Status {
}

impl ::std::default::Default for TestRun_Status {
    fn default() -> Self {
        TestRun_Status::UNKNOWN
    }
}

impl ::protobuf::reflect::ProtobufValue for TestRun_Status {
    fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef {
        ::protobuf::reflect::ProtobufValueRef::Enum(self.descriptor())
    }
}

static file_descriptor_proto_data: &'static [u8] = b"\
    \n\x1bhapi/release/test_run.proto\x12\x0chapi.release\x1a\x1fgoogle/prot\
    obuf/timestamp.proto\"\x9f\x02\n\x07TestRun\x12\x12\n\x04name\x18\x01\
    \x20\x01(\tR\x04name\x124\n\x06status\x18\x02\x20\x01(\x0e2\x1c.hapi.rel\
    ease.TestRun.StatusR\x06status\x12\x12\n\x04info\x18\x03\x20\x01(\tR\x04\
    info\x129\n\nstarted_at\x18\x04\x20\x01(\x0b2\x1a.google.protobuf.Timest\
    ampR\tstartedAt\x12=\n\x0ccompleted_at\x18\x05\x20\x01(\x0b2\x1a.google.\
    protobuf.TimestampR\x0bcompletedAt\"<\n\x06Status\x12\x0b\n\x07UNKNOWN\
    \x10\0\x12\x0b\n\x07SUCCESS\x10\x01\x12\x0b\n\x07FAILURE\x10\x02\x12\x0b\
    \n\x07RUNNING\x10\x03B\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()
        })
    }
}