#[derive(Clone, Debug, Default)]
pub struct TimestampView<'a> {
pub seconds: i64,
pub nanos: i32,
pub __buffa_unknown_fields: ::buffa::UnknownFieldsView<'a>,
}
impl<'a> TimestampView<'a> {
#[doc(hidden)]
pub fn _decode_depth(
buf: &'a [u8],
depth: u32,
) -> ::core::result::Result<Self, ::buffa::DecodeError> {
let mut view = Self::default();
view._merge_into_view(buf, depth)?;
::core::result::Result::Ok(view)
}
#[doc(hidden)]
pub fn _merge_into_view(
&mut self,
buf: &'a [u8],
depth: u32,
) -> ::core::result::Result<(), ::buffa::DecodeError> {
let _ = depth;
#[allow(unused_variables)]
let view = self;
let mut cur: &'a [u8] = buf;
while !cur.is_empty() {
let before_tag = cur;
let tag = ::buffa::encoding::Tag::decode(&mut cur)?;
match tag.field_number() {
1u32 => {
if tag.wire_type() != ::buffa::encoding::WireType::Varint {
return ::core::result::Result::Err(::buffa::DecodeError::WireTypeMismatch {
field_number: 1u32,
expected: 0u8,
actual: tag.wire_type() as u8,
});
}
view.seconds = ::buffa::types::decode_int64(&mut cur)?;
}
2u32 => {
if tag.wire_type() != ::buffa::encoding::WireType::Varint {
return ::core::result::Result::Err(::buffa::DecodeError::WireTypeMismatch {
field_number: 2u32,
expected: 0u8,
actual: tag.wire_type() as u8,
});
}
view.nanos = ::buffa::types::decode_int32(&mut cur)?;
}
_ => {
::buffa::encoding::skip_field_depth(tag, &mut cur, depth)?;
let span_len = before_tag.len() - cur.len();
view.__buffa_unknown_fields.push_raw(&before_tag[..span_len]);
}
}
}
::core::result::Result::Ok(())
}
}
impl<'a> ::buffa::MessageView<'a> for TimestampView<'a> {
type Owned = super::super::Timestamp;
fn decode_view(buf: &'a [u8]) -> ::core::result::Result<Self, ::buffa::DecodeError> {
Self::_decode_depth(buf, ::buffa::RECURSION_LIMIT)
}
fn decode_view_with_limit(
buf: &'a [u8],
depth: u32,
) -> ::core::result::Result<Self, ::buffa::DecodeError> {
Self::_decode_depth(buf, depth)
}
fn to_owned_message(&self) -> super::super::Timestamp {
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>,
) -> super::super::Timestamp {
#[allow(unused_imports)]
use ::buffa::alloc::string::ToString as _;
let _ = __buffa_src;
super::super::Timestamp {
seconds: self.seconds,
nanos: self.nanos,
__buffa_unknown_fields: self
.__buffa_unknown_fields
.to_owned()
.unwrap_or_default()
.into(),
..::core::default::Default::default()
}
}
}
impl<'a> ::buffa::ViewEncode<'a> for TimestampView<'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 = 0u32;
if self.seconds != 0i64 {
size += 1u32 + ::buffa::types::int64_encoded_len(self.seconds) as u32;
}
if self.nanos != 0i32 {
size += 1u32 + ::buffa::types::int32_encoded_len(self.nanos) as u32;
}
size += self.__buffa_unknown_fields.encoded_len() as u32;
size
}
#[allow(clippy::needless_borrow)]
fn write_to(
&self,
_cache: &mut ::buffa::SizeCache,
buf: &mut impl ::buffa::bytes::BufMut,
) {
#[allow(unused_imports)]
use ::buffa::Enumeration as _;
if self.seconds != 0i64 {
::buffa::encoding::Tag::new(1u32, ::buffa::encoding::WireType::Varint)
.encode(buf);
::buffa::types::encode_int64(self.seconds, buf);
}
if self.nanos != 0i32 {
::buffa::encoding::Tag::new(2u32, ::buffa::encoding::WireType::Varint)
.encode(buf);
::buffa::types::encode_int32(self.nanos, buf);
}
self.__buffa_unknown_fields.write_to(buf);
}
}
impl<'a> ::buffa::MessageName for TimestampView<'a> {
const PACKAGE: &'static str = "google.protobuf";
const NAME: &'static str = "Timestamp";
const FULL_NAME: &'static str = "google.protobuf.Timestamp";
const TYPE_URL: &'static str = "type.googleapis.com/google.protobuf.Timestamp";
}
impl<'v> ::buffa::DefaultViewInstance for TimestampView<'v> {
fn default_view_instance<'a>() -> &'a Self
where
Self: 'a,
{
static VALUE: ::buffa::__private::OnceBox<TimestampView<'static>> = ::buffa::__private::OnceBox::new();
VALUE
.get_or_init(|| ::buffa::alloc::boxed::Box::new(
<TimestampView<'static>>::default(),
))
}
}
impl ::buffa::ViewReborrow for TimestampView<'static> {
type Reborrowed<'b> = TimestampView<'b>;
fn reborrow<'b>(this: &'b Self) -> &'b Self::Reborrowed<'b> {
this
}
}
#[derive(Clone, Debug)]
pub struct TimestampOwnedView(::buffa::OwnedView<TimestampView<'static>>);
impl TimestampOwnedView {
pub fn decode(
bytes: ::buffa::bytes::Bytes,
) -> ::core::result::Result<Self, ::buffa::DecodeError> {
::core::result::Result::Ok(
TimestampOwnedView(::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(
TimestampOwnedView(::buffa::OwnedView::decode_with_options(bytes, opts)?),
)
}
pub fn from_owned(
msg: &super::super::Timestamp,
) -> ::core::result::Result<Self, ::buffa::DecodeError> {
::core::result::Result::Ok(
TimestampOwnedView(::buffa::OwnedView::from_owned(msg)?),
)
}
#[must_use]
pub fn view(&self) -> &TimestampView<'_> {
self.0.reborrow()
}
#[must_use]
pub fn to_owned_message(&self) -> super::super::Timestamp {
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<TimestampView<'static>>>
for TimestampOwnedView {
fn from(inner: ::buffa::OwnedView<TimestampView<'static>>) -> Self {
TimestampOwnedView(inner)
}
}
impl ::core::convert::From<TimestampOwnedView>
for ::buffa::OwnedView<TimestampView<'static>> {
fn from(wrapper: TimestampOwnedView) -> Self {
wrapper.0
}
}
impl ::core::convert::AsRef<::buffa::OwnedView<TimestampView<'static>>>
for TimestampOwnedView {
fn as_ref(&self) -> &::buffa::OwnedView<TimestampView<'static>> {
&self.0
}
}
impl ::buffa::HasMessageView for super::super::Timestamp {
type View<'a> = TimestampView<'a>;
type ViewHandle = TimestampOwnedView;
}
#[cfg(feature = "reflect")]
const _: () = {
impl<'a> ::buffa_descriptor::reflect::ReflectMessage for TimestampView<'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);
::buffa_descriptor::reflect::DynamicMessage::decode(
::buffa::alloc::sync::Arc::clone(
super::super::__buffa::reflect::descriptor_pool(),
),
Self::__buffa_reflect_message_index(),
&bytes,
)
.expect("view re-encodes to bytes decodable against its own descriptor")
}
}
impl<'a> ::buffa_descriptor::reflect::ReflectElement for TimestampView<'a> {
fn as_value_ref(&self) -> ::buffa_descriptor::reflect::ValueRef<'_> {
::buffa_descriptor::reflect::ValueRef::Message(
::buffa_descriptor::reflect::ReflectCow::Borrowed(self),
)
}
}
impl<'a> TimestampView<'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",
)
})
}
}
};