#[derive(Clone, Debug, Default)]
pub struct DurationView<'a> {
pub seconds: i64,
pub nanos: i32,
pub __buffa_unknown_fields: ::buffa::UnknownFieldsView<'a>,
}
impl<'a> ::buffa::MessageView<'a> for DurationView<'a> {
type Owned = super::super::Duration;
fn decode_view(buf: &'a [u8]) -> ::core::result::Result<Self, ::buffa::DecodeError> {
let __limit = ::core::cell::Cell::new(::buffa::DEFAULT_UNKNOWN_FIELD_LIMIT);
let __elem = ::core::cell::Cell::new(::buffa::DEFAULT_ELEMENT_MEMORY_LIMIT);
<Self as ::buffa::MessageView>::decode_view_ctx(
buf,
::buffa::DecodeContext::new(::buffa::RECURSION_LIMIT, &__limit)
.with_element_memory(&__elem),
)
}
fn decode_view_with_ctx(
buf: &'a [u8],
ctx: ::buffa::DecodeContext<'_>,
) -> ::core::result::Result<Self, ::buffa::DecodeError> {
<Self as ::buffa::MessageView>::decode_view_ctx(buf, ctx)
}
#[inline]
fn merge_view_field(
&mut self,
tag: ::buffa::encoding::Tag,
cur: &'a [u8],
before_tag: &'a [u8],
ctx: ::buffa::DecodeContext<'_>,
) -> ::core::result::Result<&'a [u8], ::buffa::DecodeError> {
let _ = ctx;
#[allow(unused_variables)]
let view = self;
let mut cur = cur;
match tag.field_number() {
1u32 => {
::buffa::encoding::check_wire_type(
tag,
::buffa::encoding::WireType::Varint,
)?;
view.seconds = ::buffa::types::decode_int64(&mut cur)?;
}
2u32 => {
::buffa::encoding::check_wire_type(
tag,
::buffa::encoding::WireType::Varint,
)?;
view.nanos = ::buffa::types::decode_int32(&mut cur)?;
}
_ => {
::buffa::encoding::skip_field_depth(tag, &mut cur, ctx.depth())?;
let span_len = before_tag.len() - cur.len();
view.__buffa_unknown_fields.push_record(before_tag, span_len, ctx)?;
}
}
::core::result::Result::Ok(cur)
}
fn to_owned_message(
&self,
) -> ::core::result::Result<super::super::Duration, ::buffa::DecodeError> {
self.to_owned_from_source(None)
}
#[allow(clippy::useless_conversion, clippy::needless_update)]
fn to_owned_from_source(
&self,
__buffa_src: ::core::option::Option<&::buffa::bytes::Bytes>,
) -> ::core::result::Result<super::super::Duration, ::buffa::DecodeError> {
#[allow(unused_imports)]
use ::buffa::alloc::string::ToString as _;
let _ = __buffa_src;
::core::result::Result::Ok(super::super::Duration {
seconds: self.seconds,
nanos: self.nanos,
__buffa_unknown_fields: self.__buffa_unknown_fields.to_owned()?.into(),
..::core::default::Default::default()
})
}
}
impl<'a> ::buffa::ViewEncode<'a> for DurationView<'a> {
#[allow(clippy::needless_borrow, clippy::let_and_return)]
fn compute_size(&self, _cache: &mut ::buffa::SizeCache) -> u32 {
#[allow(unused_imports)]
use ::buffa::Enumeration as _;
let mut size = 0u64;
if self.seconds != 0i64 {
size += 1u64 + ::buffa::types::int64_encoded_len(self.seconds) as u64;
}
if self.nanos != 0i32 {
size += 1u64 + ::buffa::types::int32_encoded_len(self.nanos) as u64;
}
size += self.__buffa_unknown_fields.encoded_len() as u64;
::buffa::saturate_size(size)
}
#[allow(clippy::needless_borrow)]
fn write_to(
&self,
_cache: &mut ::buffa::SizeCache,
buf: &mut impl ::buffa::EncodeSink,
) {
#[allow(unused_imports)]
use ::buffa::Enumeration as _;
if self.seconds != 0i64 {
::buffa::types::put_int64_field(1u32, self.seconds, buf);
}
if self.nanos != 0i32 {
::buffa::types::put_int32_field(2u32, self.nanos, buf);
}
self.__buffa_unknown_fields.write_to(buf);
}
}
impl<'a> ::buffa::MessageName for DurationView<'a> {
const PACKAGE: &'static str = "google.protobuf";
const NAME: &'static str = "Duration";
const FULL_NAME: &'static str = "google.protobuf.Duration";
const TYPE_URL: &'static str = "type.googleapis.com/google.protobuf.Duration";
}
::buffa::impl_default_view_instance!(DurationView);
::buffa::impl_view_reborrow!(DurationView);
#[derive(Clone, Debug)]
pub struct DurationOwnedView(::buffa::OwnedView<DurationView<'static>>);
impl DurationOwnedView {
pub fn decode(
bytes: ::buffa::bytes::Bytes,
) -> ::core::result::Result<Self, ::buffa::DecodeError> {
::core::result::Result::Ok(DurationOwnedView(::buffa::OwnedView::decode(bytes)?))
}
pub fn decode_with_options(
bytes: ::buffa::bytes::Bytes,
opts: &::buffa::DecodeOptions,
) -> ::core::result::Result<Self, ::buffa::DecodeError> {
::core::result::Result::Ok(
DurationOwnedView(::buffa::OwnedView::decode_with_options(bytes, opts)?),
)
}
pub fn from_owned(
msg: &super::super::Duration,
) -> ::core::result::Result<Self, ::buffa::DecodeError> {
::core::result::Result::Ok(
DurationOwnedView(::buffa::OwnedView::from_owned(msg)?),
)
}
#[must_use]
pub fn view(&self) -> &DurationView<'_> {
self.0.reborrow()
}
#[must_use]
pub fn to_owned_message(&self) -> super::super::Duration {
self.0.to_owned_message()
}
#[must_use]
pub fn bytes(&self) -> &::buffa::bytes::Bytes {
self.0.bytes()
}
#[must_use]
pub fn into_bytes(self) -> ::buffa::bytes::Bytes {
self.0.into_bytes()
}
#[must_use]
pub fn seconds(&self) -> i64 {
self.0.reborrow().seconds
}
#[must_use]
pub fn nanos(&self) -> i32 {
self.0.reborrow().nanos
}
}
impl ::core::convert::From<::buffa::OwnedView<DurationView<'static>>>
for DurationOwnedView {
fn from(inner: ::buffa::OwnedView<DurationView<'static>>) -> Self {
DurationOwnedView(inner)
}
}
impl ::core::convert::From<DurationOwnedView>
for ::buffa::OwnedView<DurationView<'static>> {
fn from(wrapper: DurationOwnedView) -> Self {
wrapper.0
}
}
impl ::core::convert::AsRef<::buffa::OwnedView<DurationView<'static>>>
for DurationOwnedView {
fn as_ref(&self) -> &::buffa::OwnedView<DurationView<'static>> {
&self.0
}
}
impl ::buffa::HasMessageView for super::super::Duration {
type View<'a> = DurationView<'a>;
type ViewHandle = DurationOwnedView;
}
#[cfg(feature = "reflect")]
const _: () = {
impl<'a> ::buffa_descriptor::reflect::ReflectMessage for DurationView<'a> {
fn message_descriptor(&self) -> &::buffa_descriptor::MessageDescriptor {
super::super::__buffa::reflect::descriptor_pool()
.message(Self::__buffa_reflect_message_index())
}
fn pool(
&self,
) -> &::buffa::alloc::sync::Arc<::buffa_descriptor::DescriptorPool> {
super::super::__buffa::reflect::descriptor_pool()
}
fn get(
&self,
field: &::buffa_descriptor::FieldDescriptor,
) -> ::buffa_descriptor::reflect::ValueRef<'_> {
#[allow(unused_imports)]
use ::buffa::Enumeration as _;
match field.number() {
1u32 => ::buffa_descriptor::reflect::ValueRef::I64(self.seconds),
2u32 => ::buffa_descriptor::reflect::ValueRef::I32(self.nanos),
_ => {
::core::debug_assert!(
false,
"field number {} is not a member of this view's reflect get()",
field.number(),
);
::buffa_descriptor::reflect::ValueRef::Bool(false)
}
}
}
fn has(&self, field: &::buffa_descriptor::FieldDescriptor) -> bool {
match field.number() {
1u32 => self.seconds != 0,
2u32 => self.nanos != 0,
_ => false,
}
}
fn for_each_set(
&self,
f: &mut dyn ::core::ops::FnMut(
&::buffa_descriptor::FieldDescriptor,
::buffa_descriptor::reflect::ValueRef<'_>,
),
) {
let md = ::buffa_descriptor::reflect::ReflectMessage::message_descriptor(
self,
);
for fd in md.fields() {
if ::buffa_descriptor::reflect::ReflectMessage::has(self, fd) {
f(fd, ::buffa_descriptor::reflect::ReflectMessage::get(self, fd));
}
}
}
fn to_dynamic(&self) -> ::buffa_descriptor::reflect::DynamicMessage {
let bytes = ::buffa::ViewEncode::encode_to_vec(self);
let options = ::buffa::DecodeOptions::new()
.with_element_memory_limit(
bytes
.len()
.saturating_mul(128)
.max(::buffa::DEFAULT_ELEMENT_MEMORY_LIMIT),
)
.with_unknown_field_limit(
bytes.len().max(::buffa::DEFAULT_UNKNOWN_FIELD_LIMIT),
);
::buffa_descriptor::reflect::DynamicMessage::decode_with_options(
::buffa::alloc::sync::Arc::clone(
super::super::__buffa::reflect::descriptor_pool(),
),
Self::__buffa_reflect_message_index(),
&bytes,
&options,
)
.expect("view re-encodes to bytes decodable against its own descriptor")
}
}
impl<'a> ::buffa_descriptor::reflect::ReflectElement for DurationView<'a> {
fn as_value_ref(&self) -> ::buffa_descriptor::reflect::ValueRef<'_> {
::buffa_descriptor::reflect::ValueRef::Message(
::buffa_descriptor::reflect::ReflectCow::Borrowed(self),
)
}
}
impl<'a> DurationView<'a> {
#[doc(hidden)]
fn __buffa_reflect_message_index() -> ::buffa_descriptor::MessageIndex {
static IDX: ::std::sync::OnceLock<::buffa_descriptor::MessageIndex> = ::std::sync::OnceLock::new();
*IDX
.get_or_init(|| {
super::super::__buffa::reflect::descriptor_pool()
.message_index(<Self as ::buffa::MessageName>::FULL_NAME)
.expect(
"generated view type is registered in the embedded descriptor pool",
)
})
}
}
};