generate: envelope
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
parent
8f4f441574
commit
afc69342b1
@ -2,100 +2,63 @@
|
|||||||
// DO NOT EDIT.
|
// DO NOT EDIT.
|
||||||
// source: envelope.capnp
|
// source: envelope.capnp
|
||||||
|
|
||||||
|
|
||||||
pub mod envelope {
|
pub mod envelope {
|
||||||
#[derive(Copy, Clone)]
|
#[derive(Copy, Clone)]
|
||||||
pub struct Owned(());
|
pub struct Owned(());
|
||||||
impl ::capnp::introspect::Introspect for Owned {
|
impl ::capnp::introspect::Introspect for Owned { fn introspect() -> ::capnp::introspect::Type { ::capnp::introspect::TypeVariant::Struct(::capnp::introspect::RawBrandedStructSchema { generic: &_private::RAW_SCHEMA, field_types: _private::get_field_types, annotation_types: _private::get_annotation_types }).into() } }
|
||||||
fn introspect() -> ::capnp::introspect::Type {
|
impl ::capnp::traits::Owned for Owned { type Reader<'a> = Reader<'a>; type Builder<'a> = Builder<'a>; }
|
||||||
::capnp::introspect::TypeVariant::Struct(::capnp::introspect::RawBrandedStructSchema {
|
impl ::capnp::traits::OwnedStruct for Owned { type Reader<'a> = Reader<'a>; type Builder<'a> = Builder<'a>; }
|
||||||
generic: &_private::RAW_SCHEMA,
|
impl ::capnp::traits::Pipelined for Owned { type Pipeline = Pipeline; }
|
||||||
field_types: _private::get_field_types,
|
|
||||||
annotation_types: _private::get_annotation_types,
|
pub struct Reader<'a> { reader: ::capnp::private::layout::StructReader<'a> }
|
||||||
})
|
impl <'a,> ::core::marker::Copy for Reader<'a,> {}
|
||||||
.into()
|
impl <'a,> ::core::clone::Clone for Reader<'a,> {
|
||||||
}
|
fn clone(&self) -> Self { *self }
|
||||||
}
|
|
||||||
impl ::capnp::traits::Owned for Owned {
|
|
||||||
type Reader<'a> = Reader<'a>;
|
|
||||||
type Builder<'a> = Builder<'a>;
|
|
||||||
}
|
|
||||||
impl ::capnp::traits::OwnedStruct for Owned {
|
|
||||||
type Reader<'a> = Reader<'a>;
|
|
||||||
type Builder<'a> = Builder<'a>;
|
|
||||||
}
|
|
||||||
impl ::capnp::traits::Pipelined for Owned {
|
|
||||||
type Pipeline = Pipeline;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Reader<'a> {
|
impl <'a,> ::capnp::traits::HasTypeId for Reader<'a,> {
|
||||||
reader: ::capnp::private::layout::StructReader<'a>,
|
|
||||||
}
|
|
||||||
impl<'a> ::core::marker::Copy for Reader<'a> {}
|
|
||||||
impl<'a> ::core::clone::Clone for Reader<'a> {
|
|
||||||
fn clone(&self) -> Self {
|
|
||||||
*self
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::HasTypeId for Reader<'a> {
|
|
||||||
const TYPE_ID: u64 = _private::TYPE_ID;
|
const TYPE_ID: u64 = _private::TYPE_ID;
|
||||||
}
|
}
|
||||||
impl<'a> ::core::convert::From<::capnp::private::layout::StructReader<'a>> for Reader<'a> {
|
impl <'a,> ::core::convert::From<::capnp::private::layout::StructReader<'a>> for Reader<'a,> {
|
||||||
fn from(reader: ::capnp::private::layout::StructReader<'a>) -> Self {
|
fn from(reader: ::capnp::private::layout::StructReader<'a>) -> Self {
|
||||||
Self { reader }
|
Self { reader, }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::core::convert::From<Reader<'a>> for ::capnp::dynamic_value::Reader<'a> {
|
impl <'a,> ::core::convert::From<Reader<'a,>> for ::capnp::dynamic_value::Reader<'a> {
|
||||||
fn from(reader: Reader<'a>) -> Self {
|
fn from(reader: Reader<'a,>) -> Self {
|
||||||
Self::Struct(::capnp::dynamic_struct::Reader::new(
|
Self::Struct(::capnp::dynamic_struct::Reader::new(reader.reader, ::capnp::schema::StructSchema::new(::capnp::introspect::RawBrandedStructSchema { generic: &_private::RAW_SCHEMA, field_types: _private::get_field_types::<>, annotation_types: _private::get_annotation_types::<>})))
|
||||||
reader.reader,
|
|
||||||
::capnp::schema::StructSchema::new(::capnp::introspect::RawBrandedStructSchema {
|
|
||||||
generic: &_private::RAW_SCHEMA,
|
|
||||||
field_types: _private::get_field_types,
|
|
||||||
annotation_types: _private::get_annotation_types,
|
|
||||||
}),
|
|
||||||
))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::core::fmt::Debug for Reader<'a> {
|
impl <'a,> ::core::fmt::Debug for Reader<'a,> {
|
||||||
fn fmt(
|
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::result::Result<(), ::core::fmt::Error> {
|
||||||
&self,
|
core::fmt::Debug::fmt(&::core::convert::Into::<::capnp::dynamic_value::Reader<'_>>::into(*self), f)
|
||||||
f: &mut ::core::fmt::Formatter<'_>,
|
|
||||||
) -> ::core::result::Result<(), ::core::fmt::Error> {
|
|
||||||
core::fmt::Debug::fmt(
|
|
||||||
&::core::convert::Into::<::capnp::dynamic_value::Reader<'_>>::into(*self),
|
|
||||||
f,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::FromPointerReader<'a> for Reader<'a> {
|
impl <'a,> ::capnp::traits::FromPointerReader<'a> for Reader<'a,> {
|
||||||
fn get_from_pointer(
|
fn get_from_pointer(reader: &::capnp::private::layout::PointerReader<'a>, default: ::core::option::Option<&'a [::capnp::Word]>) -> ::capnp::Result<Self> {
|
||||||
reader: &::capnp::private::layout::PointerReader<'a>,
|
|
||||||
default: ::core::option::Option<&'a [::capnp::Word]>,
|
|
||||||
) -> ::capnp::Result<Self> {
|
|
||||||
::core::result::Result::Ok(reader.get_struct(default)?.into())
|
::core::result::Result::Ok(reader.get_struct(default)?.into())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::IntoInternalStructReader<'a> for Reader<'a> {
|
impl <'a,> ::capnp::traits::IntoInternalStructReader<'a> for Reader<'a,> {
|
||||||
fn into_internal_struct_reader(self) -> ::capnp::private::layout::StructReader<'a> {
|
fn into_internal_struct_reader(self) -> ::capnp::private::layout::StructReader<'a> {
|
||||||
self.reader
|
self.reader
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::Imbue<'a> for Reader<'a> {
|
impl <'a,> ::capnp::traits::Imbue<'a> for Reader<'a,> {
|
||||||
fn imbue(&mut self, cap_table: &'a ::capnp::private::layout::CapTable) {
|
fn imbue(&mut self, cap_table: &'a ::capnp::private::layout::CapTable) {
|
||||||
self.reader
|
self.reader.imbue(::capnp::private::layout::CapTableReader::Plain(cap_table))
|
||||||
.imbue(::capnp::private::layout::CapTableReader::Plain(cap_table))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> Reader<'a> {
|
impl <'a,> Reader<'a,> {
|
||||||
pub fn reborrow(&self) -> Reader<'_> {
|
pub fn reborrow(&self) -> Reader<'_,> {
|
||||||
Self { ..*self }
|
Self { .. *self }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn total_size(&self) -> ::capnp::Result<::capnp::MessageSize> {
|
pub fn total_size(&self) -> ::capnp::Result<::capnp::MessageSize> {
|
||||||
@ -103,10 +66,7 @@ pub mod envelope {
|
|||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_metadata(self) -> ::capnp::Result<crate::envelope_capnp::metadata::Reader<'a>> {
|
pub fn get_metadata(self) -> ::capnp::Result<crate::envelope_capnp::metadata::Reader<'a>> {
|
||||||
::capnp::traits::FromPointerReader::get_from_pointer(
|
::capnp::traits::FromPointerReader::get_from_pointer(&self.reader.get_pointer_field(0), ::core::option::Option::None)
|
||||||
&self.reader.get_pointer_field(0),
|
|
||||||
::core::option::Option::None,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn has_metadata(&self) -> bool {
|
pub fn has_metadata(&self) -> bool {
|
||||||
@ -114,10 +74,7 @@ pub mod envelope {
|
|||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_content(self) -> ::capnp::Result<::capnp::data::Reader<'a>> {
|
pub fn get_content(self) -> ::capnp::Result<::capnp::data::Reader<'a>> {
|
||||||
::capnp::traits::FromPointerReader::get_from_pointer(
|
::capnp::traits::FromPointerReader::get_from_pointer(&self.reader.get_pointer_field(1), ::core::option::Option::None)
|
||||||
&self.reader.get_pointer_field(1),
|
|
||||||
::core::option::Option::None,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn has_content(&self) -> bool {
|
pub fn has_content(&self) -> bool {
|
||||||
@ -125,86 +82,52 @@ pub mod envelope {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Builder<'a> {
|
pub struct Builder<'a> { builder: ::capnp::private::layout::StructBuilder<'a> }
|
||||||
builder: ::capnp::private::layout::StructBuilder<'a>,
|
impl <'a,> ::capnp::traits::HasStructSize for Builder<'a,> {
|
||||||
|
const STRUCT_SIZE: ::capnp::private::layout::StructSize = ::capnp::private::layout::StructSize { data: 0, pointers: 2 };
|
||||||
}
|
}
|
||||||
impl<'a> ::capnp::traits::HasStructSize for Builder<'a> {
|
impl <'a,> ::capnp::traits::HasTypeId for Builder<'a,> {
|
||||||
const STRUCT_SIZE: ::capnp::private::layout::StructSize =
|
|
||||||
::capnp::private::layout::StructSize {
|
|
||||||
data: 0,
|
|
||||||
pointers: 2,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
impl<'a> ::capnp::traits::HasTypeId for Builder<'a> {
|
|
||||||
const TYPE_ID: u64 = _private::TYPE_ID;
|
const TYPE_ID: u64 = _private::TYPE_ID;
|
||||||
}
|
}
|
||||||
impl<'a> ::core::convert::From<::capnp::private::layout::StructBuilder<'a>> for Builder<'a> {
|
impl <'a,> ::core::convert::From<::capnp::private::layout::StructBuilder<'a>> for Builder<'a,> {
|
||||||
fn from(builder: ::capnp::private::layout::StructBuilder<'a>) -> Self {
|
fn from(builder: ::capnp::private::layout::StructBuilder<'a>) -> Self {
|
||||||
Self { builder }
|
Self { builder, }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::core::convert::From<Builder<'a>> for ::capnp::dynamic_value::Builder<'a> {
|
impl <'a,> ::core::convert::From<Builder<'a,>> for ::capnp::dynamic_value::Builder<'a> {
|
||||||
fn from(builder: Builder<'a>) -> Self {
|
fn from(builder: Builder<'a,>) -> Self {
|
||||||
Self::Struct(::capnp::dynamic_struct::Builder::new(
|
Self::Struct(::capnp::dynamic_struct::Builder::new(builder.builder, ::capnp::schema::StructSchema::new(::capnp::introspect::RawBrandedStructSchema { generic: &_private::RAW_SCHEMA, field_types: _private::get_field_types::<>, annotation_types: _private::get_annotation_types::<>})))
|
||||||
builder.builder,
|
|
||||||
::capnp::schema::StructSchema::new(::capnp::introspect::RawBrandedStructSchema {
|
|
||||||
generic: &_private::RAW_SCHEMA,
|
|
||||||
field_types: _private::get_field_types,
|
|
||||||
annotation_types: _private::get_annotation_types,
|
|
||||||
}),
|
|
||||||
))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::ImbueMut<'a> for Builder<'a> {
|
impl <'a,> ::capnp::traits::ImbueMut<'a> for Builder<'a,> {
|
||||||
fn imbue_mut(&mut self, cap_table: &'a mut ::capnp::private::layout::CapTable) {
|
fn imbue_mut(&mut self, cap_table: &'a mut ::capnp::private::layout::CapTable) {
|
||||||
self.builder
|
self.builder.imbue(::capnp::private::layout::CapTableBuilder::Plain(cap_table))
|
||||||
.imbue(::capnp::private::layout::CapTableBuilder::Plain(cap_table))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::FromPointerBuilder<'a> for Builder<'a> {
|
impl <'a,> ::capnp::traits::FromPointerBuilder<'a> for Builder<'a,> {
|
||||||
fn init_pointer(builder: ::capnp::private::layout::PointerBuilder<'a>, _size: u32) -> Self {
|
fn init_pointer(builder: ::capnp::private::layout::PointerBuilder<'a>, _size: u32) -> Self {
|
||||||
builder
|
builder.init_struct(<Self as ::capnp::traits::HasStructSize>::STRUCT_SIZE).into()
|
||||||
.init_struct(<Self as ::capnp::traits::HasStructSize>::STRUCT_SIZE)
|
|
||||||
.into()
|
|
||||||
}
|
}
|
||||||
fn get_from_pointer(
|
fn get_from_pointer(builder: ::capnp::private::layout::PointerBuilder<'a>, default: ::core::option::Option<&'a [::capnp::Word]>) -> ::capnp::Result<Self> {
|
||||||
builder: ::capnp::private::layout::PointerBuilder<'a>,
|
::core::result::Result::Ok(builder.get_struct(<Self as ::capnp::traits::HasStructSize>::STRUCT_SIZE, default)?.into())
|
||||||
default: ::core::option::Option<&'a [::capnp::Word]>,
|
|
||||||
) -> ::capnp::Result<Self> {
|
|
||||||
::core::result::Result::Ok(
|
|
||||||
builder
|
|
||||||
.get_struct(
|
|
||||||
<Self as ::capnp::traits::HasStructSize>::STRUCT_SIZE,
|
|
||||||
default,
|
|
||||||
)?
|
|
||||||
.into(),
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::SetPointerBuilder for Reader<'a> {
|
impl <'a,> ::capnp::traits::SetPointerBuilder for Reader<'a,> {
|
||||||
fn set_pointer_builder(
|
fn set_pointer_builder(mut pointer: ::capnp::private::layout::PointerBuilder<'_>, value: Self, canonicalize: bool) -> ::capnp::Result<()> { pointer.set_struct(&value.reader, canonicalize) }
|
||||||
mut pointer: ::capnp::private::layout::PointerBuilder<'_>,
|
|
||||||
value: Self,
|
|
||||||
canonicalize: bool,
|
|
||||||
) -> ::capnp::Result<()> {
|
|
||||||
pointer.set_struct(&value.reader, canonicalize)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> Builder<'a> {
|
impl <'a,> Builder<'a,> {
|
||||||
pub fn into_reader(self) -> Reader<'a> {
|
pub fn into_reader(self) -> Reader<'a,> {
|
||||||
self.builder.into_reader().into()
|
self.builder.into_reader().into()
|
||||||
}
|
}
|
||||||
pub fn reborrow(&mut self) -> Builder<'_> {
|
pub fn reborrow(&mut self) -> Builder<'_,> {
|
||||||
Builder {
|
Builder { builder: self.builder.reborrow() }
|
||||||
builder: self.builder.reborrow(),
|
|
||||||
}
|
}
|
||||||
}
|
pub fn reborrow_as_reader(&self) -> Reader<'_,> {
|
||||||
pub fn reborrow_as_reader(&self) -> Reader<'_> {
|
|
||||||
self.builder.as_reader().into()
|
self.builder.as_reader().into()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -213,24 +136,14 @@ pub mod envelope {
|
|||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_metadata(self) -> ::capnp::Result<crate::envelope_capnp::metadata::Builder<'a>> {
|
pub fn get_metadata(self) -> ::capnp::Result<crate::envelope_capnp::metadata::Builder<'a>> {
|
||||||
::capnp::traits::FromPointerBuilder::get_from_pointer(
|
::capnp::traits::FromPointerBuilder::get_from_pointer(self.builder.get_pointer_field(0), ::core::option::Option::None)
|
||||||
self.builder.get_pointer_field(0),
|
|
||||||
::core::option::Option::None,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn set_metadata(
|
pub fn set_metadata(&mut self, value: crate::envelope_capnp::metadata::Reader<'_>) -> ::capnp::Result<()> {
|
||||||
&mut self,
|
::capnp::traits::SetPointerBuilder::set_pointer_builder(self.builder.reborrow().get_pointer_field(0), value, false)
|
||||||
value: crate::envelope_capnp::metadata::Reader<'_>,
|
|
||||||
) -> ::capnp::Result<()> {
|
|
||||||
::capnp::traits::SetPointerBuilder::set_pointer_builder(
|
|
||||||
self.builder.reborrow().get_pointer_field(0),
|
|
||||||
value,
|
|
||||||
false,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn init_metadata(self) -> crate::envelope_capnp::metadata::Builder<'a> {
|
pub fn init_metadata(self, ) -> crate::envelope_capnp::metadata::Builder<'a> {
|
||||||
::capnp::traits::FromPointerBuilder::init_pointer(self.builder.get_pointer_field(0), 0)
|
::capnp::traits::FromPointerBuilder::init_pointer(self.builder.get_pointer_field(0), 0)
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
@ -239,10 +152,7 @@ pub mod envelope {
|
|||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_content(self) -> ::capnp::Result<::capnp::data::Builder<'a>> {
|
pub fn get_content(self) -> ::capnp::Result<::capnp::data::Builder<'a>> {
|
||||||
::capnp::traits::FromPointerBuilder::get_from_pointer(
|
::capnp::traits::FromPointerBuilder::get_from_pointer(self.builder.get_pointer_field(1), ::core::option::Option::None)
|
||||||
self.builder.get_pointer_field(1),
|
|
||||||
::core::option::Option::None,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn set_content(&mut self, value: ::capnp::data::Reader<'_>) {
|
pub fn set_content(&mut self, value: ::capnp::data::Reader<'_>) {
|
||||||
@ -258,14 +168,10 @@ pub mod envelope {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Pipeline {
|
pub struct Pipeline { _typeless: ::capnp::any_pointer::Pipeline }
|
||||||
_typeless: ::capnp::any_pointer::Pipeline,
|
|
||||||
}
|
|
||||||
impl ::capnp::capability::FromTypelessPipeline for Pipeline {
|
impl ::capnp::capability::FromTypelessPipeline for Pipeline {
|
||||||
fn new(typeless: ::capnp::any_pointer::Pipeline) -> Self {
|
fn new(typeless: ::capnp::any_pointer::Pipeline) -> Self {
|
||||||
Self {
|
Self { _typeless: typeless, }
|
||||||
_typeless: typeless,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl Pipeline {
|
impl Pipeline {
|
||||||
@ -331,20 +237,16 @@ pub mod envelope {
|
|||||||
_ => panic!("invalid field index {}", index),
|
_ => panic!("invalid field index {}", index),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn get_annotation_types(
|
pub fn get_annotation_types(child_index: Option<u16>, index: u32) -> ::capnp::introspect::Type {
|
||||||
child_index: Option<u16>,
|
|
||||||
index: u32,
|
|
||||||
) -> ::capnp::introspect::Type {
|
|
||||||
panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
|
panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
|
||||||
}
|
}
|
||||||
pub static RAW_SCHEMA: ::capnp::introspect::RawStructSchema =
|
pub static RAW_SCHEMA: ::capnp::introspect::RawStructSchema = ::capnp::introspect::RawStructSchema {
|
||||||
::capnp::introspect::RawStructSchema {
|
|
||||||
encoded_node: &ENCODED_NODE,
|
encoded_node: &ENCODED_NODE,
|
||||||
nonunion_members: NONUNION_MEMBERS,
|
nonunion_members: NONUNION_MEMBERS,
|
||||||
members_by_discriminant: MEMBERS_BY_DISCRIMINANT,
|
members_by_discriminant: MEMBERS_BY_DISCRIMINANT,
|
||||||
};
|
};
|
||||||
pub static NONUNION_MEMBERS: &[u16] = &[0, 1];
|
pub static NONUNION_MEMBERS : &[u16] = &[0,1];
|
||||||
pub static MEMBERS_BY_DISCRIMINANT: &[u16] = &[];
|
pub static MEMBERS_BY_DISCRIMINANT : &[u16] = &[];
|
||||||
pub const TYPE_ID: u64 = 0xfa2e_5d6c_2966_b23f;
|
pub const TYPE_ID: u64 = 0xfa2e_5d6c_2966_b23f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -352,97 +254,59 @@ pub mod envelope {
|
|||||||
pub mod metadata {
|
pub mod metadata {
|
||||||
#[derive(Copy, Clone)]
|
#[derive(Copy, Clone)]
|
||||||
pub struct Owned(());
|
pub struct Owned(());
|
||||||
impl ::capnp::introspect::Introspect for Owned {
|
impl ::capnp::introspect::Introspect for Owned { fn introspect() -> ::capnp::introspect::Type { ::capnp::introspect::TypeVariant::Struct(::capnp::introspect::RawBrandedStructSchema { generic: &_private::RAW_SCHEMA, field_types: _private::get_field_types, annotation_types: _private::get_annotation_types }).into() } }
|
||||||
fn introspect() -> ::capnp::introspect::Type {
|
impl ::capnp::traits::Owned for Owned { type Reader<'a> = Reader<'a>; type Builder<'a> = Builder<'a>; }
|
||||||
::capnp::introspect::TypeVariant::Struct(::capnp::introspect::RawBrandedStructSchema {
|
impl ::capnp::traits::OwnedStruct for Owned { type Reader<'a> = Reader<'a>; type Builder<'a> = Builder<'a>; }
|
||||||
generic: &_private::RAW_SCHEMA,
|
impl ::capnp::traits::Pipelined for Owned { type Pipeline = Pipeline; }
|
||||||
field_types: _private::get_field_types,
|
|
||||||
annotation_types: _private::get_annotation_types,
|
pub struct Reader<'a> { reader: ::capnp::private::layout::StructReader<'a> }
|
||||||
})
|
impl <'a,> ::core::marker::Copy for Reader<'a,> {}
|
||||||
.into()
|
impl <'a,> ::core::clone::Clone for Reader<'a,> {
|
||||||
}
|
fn clone(&self) -> Self { *self }
|
||||||
}
|
|
||||||
impl ::capnp::traits::Owned for Owned {
|
|
||||||
type Reader<'a> = Reader<'a>;
|
|
||||||
type Builder<'a> = Builder<'a>;
|
|
||||||
}
|
|
||||||
impl ::capnp::traits::OwnedStruct for Owned {
|
|
||||||
type Reader<'a> = Reader<'a>;
|
|
||||||
type Builder<'a> = Builder<'a>;
|
|
||||||
}
|
|
||||||
impl ::capnp::traits::Pipelined for Owned {
|
|
||||||
type Pipeline = Pipeline;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Reader<'a> {
|
impl <'a,> ::capnp::traits::HasTypeId for Reader<'a,> {
|
||||||
reader: ::capnp::private::layout::StructReader<'a>,
|
|
||||||
}
|
|
||||||
impl<'a> ::core::marker::Copy for Reader<'a> {}
|
|
||||||
impl<'a> ::core::clone::Clone for Reader<'a> {
|
|
||||||
fn clone(&self) -> Self {
|
|
||||||
*self
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::HasTypeId for Reader<'a> {
|
|
||||||
const TYPE_ID: u64 = _private::TYPE_ID;
|
const TYPE_ID: u64 = _private::TYPE_ID;
|
||||||
}
|
}
|
||||||
impl<'a> ::core::convert::From<::capnp::private::layout::StructReader<'a>> for Reader<'a> {
|
impl <'a,> ::core::convert::From<::capnp::private::layout::StructReader<'a>> for Reader<'a,> {
|
||||||
fn from(reader: ::capnp::private::layout::StructReader<'a>) -> Self {
|
fn from(reader: ::capnp::private::layout::StructReader<'a>) -> Self {
|
||||||
Self { reader }
|
Self { reader, }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::core::convert::From<Reader<'a>> for ::capnp::dynamic_value::Reader<'a> {
|
impl <'a,> ::core::convert::From<Reader<'a,>> for ::capnp::dynamic_value::Reader<'a> {
|
||||||
fn from(reader: Reader<'a>) -> Self {
|
fn from(reader: Reader<'a,>) -> Self {
|
||||||
Self::Struct(::capnp::dynamic_struct::Reader::new(
|
Self::Struct(::capnp::dynamic_struct::Reader::new(reader.reader, ::capnp::schema::StructSchema::new(::capnp::introspect::RawBrandedStructSchema { generic: &_private::RAW_SCHEMA, field_types: _private::get_field_types::<>, annotation_types: _private::get_annotation_types::<>})))
|
||||||
reader.reader,
|
|
||||||
::capnp::schema::StructSchema::new(::capnp::introspect::RawBrandedStructSchema {
|
|
||||||
generic: &_private::RAW_SCHEMA,
|
|
||||||
field_types: _private::get_field_types,
|
|
||||||
annotation_types: _private::get_annotation_types,
|
|
||||||
}),
|
|
||||||
))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::core::fmt::Debug for Reader<'a> {
|
impl <'a,> ::core::fmt::Debug for Reader<'a,> {
|
||||||
fn fmt(
|
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::result::Result<(), ::core::fmt::Error> {
|
||||||
&self,
|
core::fmt::Debug::fmt(&::core::convert::Into::<::capnp::dynamic_value::Reader<'_>>::into(*self), f)
|
||||||
f: &mut ::core::fmt::Formatter<'_>,
|
|
||||||
) -> ::core::result::Result<(), ::core::fmt::Error> {
|
|
||||||
core::fmt::Debug::fmt(
|
|
||||||
&::core::convert::Into::<::capnp::dynamic_value::Reader<'_>>::into(*self),
|
|
||||||
f,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::FromPointerReader<'a> for Reader<'a> {
|
impl <'a,> ::capnp::traits::FromPointerReader<'a> for Reader<'a,> {
|
||||||
fn get_from_pointer(
|
fn get_from_pointer(reader: &::capnp::private::layout::PointerReader<'a>, default: ::core::option::Option<&'a [::capnp::Word]>) -> ::capnp::Result<Self> {
|
||||||
reader: &::capnp::private::layout::PointerReader<'a>,
|
|
||||||
default: ::core::option::Option<&'a [::capnp::Word]>,
|
|
||||||
) -> ::capnp::Result<Self> {
|
|
||||||
::core::result::Result::Ok(reader.get_struct(default)?.into())
|
::core::result::Result::Ok(reader.get_struct(default)?.into())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::IntoInternalStructReader<'a> for Reader<'a> {
|
impl <'a,> ::capnp::traits::IntoInternalStructReader<'a> for Reader<'a,> {
|
||||||
fn into_internal_struct_reader(self) -> ::capnp::private::layout::StructReader<'a> {
|
fn into_internal_struct_reader(self) -> ::capnp::private::layout::StructReader<'a> {
|
||||||
self.reader
|
self.reader
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::Imbue<'a> for Reader<'a> {
|
impl <'a,> ::capnp::traits::Imbue<'a> for Reader<'a,> {
|
||||||
fn imbue(&mut self, cap_table: &'a ::capnp::private::layout::CapTable) {
|
fn imbue(&mut self, cap_table: &'a ::capnp::private::layout::CapTable) {
|
||||||
self.reader
|
self.reader.imbue(::capnp::private::layout::CapTableReader::Plain(cap_table))
|
||||||
.imbue(::capnp::private::layout::CapTableReader::Plain(cap_table))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> Reader<'a> {
|
impl <'a,> Reader<'a,> {
|
||||||
pub fn reborrow(&self) -> Reader<'_> {
|
pub fn reborrow(&self) -> Reader<'_,> {
|
||||||
Self { ..*self }
|
Self { .. *self }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn total_size(&self) -> ::capnp::Result<::capnp::MessageSize> {
|
pub fn total_size(&self) -> ::capnp::Result<::capnp::MessageSize> {
|
||||||
@ -450,10 +314,7 @@ pub mod metadata {
|
|||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_domain(self) -> ::capnp::Result<::capnp::text::Reader<'a>> {
|
pub fn get_domain(self) -> ::capnp::Result<::capnp::text::Reader<'a>> {
|
||||||
::capnp::traits::FromPointerReader::get_from_pointer(
|
::capnp::traits::FromPointerReader::get_from_pointer(&self.reader.get_pointer_field(0), ::core::option::Option::None)
|
||||||
&self.reader.get_pointer_field(0),
|
|
||||||
::core::option::Option::None,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn has_domain(&self) -> bool {
|
pub fn has_domain(&self) -> bool {
|
||||||
@ -461,10 +322,7 @@ pub mod metadata {
|
|||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_entity(self) -> ::capnp::Result<::capnp::text::Reader<'a>> {
|
pub fn get_entity(self) -> ::capnp::Result<::capnp::text::Reader<'a>> {
|
||||||
::capnp::traits::FromPointerReader::get_from_pointer(
|
::capnp::traits::FromPointerReader::get_from_pointer(&self.reader.get_pointer_field(1), ::core::option::Option::None)
|
||||||
&self.reader.get_pointer_field(1),
|
|
||||||
::core::option::Option::None,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn has_entity(&self) -> bool {
|
pub fn has_entity(&self) -> bool {
|
||||||
@ -480,86 +338,52 @@ pub mod metadata {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Builder<'a> {
|
pub struct Builder<'a> { builder: ::capnp::private::layout::StructBuilder<'a> }
|
||||||
builder: ::capnp::private::layout::StructBuilder<'a>,
|
impl <'a,> ::capnp::traits::HasStructSize for Builder<'a,> {
|
||||||
|
const STRUCT_SIZE: ::capnp::private::layout::StructSize = ::capnp::private::layout::StructSize { data: 2, pointers: 2 };
|
||||||
}
|
}
|
||||||
impl<'a> ::capnp::traits::HasStructSize for Builder<'a> {
|
impl <'a,> ::capnp::traits::HasTypeId for Builder<'a,> {
|
||||||
const STRUCT_SIZE: ::capnp::private::layout::StructSize =
|
|
||||||
::capnp::private::layout::StructSize {
|
|
||||||
data: 2,
|
|
||||||
pointers: 2,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
impl<'a> ::capnp::traits::HasTypeId for Builder<'a> {
|
|
||||||
const TYPE_ID: u64 = _private::TYPE_ID;
|
const TYPE_ID: u64 = _private::TYPE_ID;
|
||||||
}
|
}
|
||||||
impl<'a> ::core::convert::From<::capnp::private::layout::StructBuilder<'a>> for Builder<'a> {
|
impl <'a,> ::core::convert::From<::capnp::private::layout::StructBuilder<'a>> for Builder<'a,> {
|
||||||
fn from(builder: ::capnp::private::layout::StructBuilder<'a>) -> Self {
|
fn from(builder: ::capnp::private::layout::StructBuilder<'a>) -> Self {
|
||||||
Self { builder }
|
Self { builder, }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::core::convert::From<Builder<'a>> for ::capnp::dynamic_value::Builder<'a> {
|
impl <'a,> ::core::convert::From<Builder<'a,>> for ::capnp::dynamic_value::Builder<'a> {
|
||||||
fn from(builder: Builder<'a>) -> Self {
|
fn from(builder: Builder<'a,>) -> Self {
|
||||||
Self::Struct(::capnp::dynamic_struct::Builder::new(
|
Self::Struct(::capnp::dynamic_struct::Builder::new(builder.builder, ::capnp::schema::StructSchema::new(::capnp::introspect::RawBrandedStructSchema { generic: &_private::RAW_SCHEMA, field_types: _private::get_field_types::<>, annotation_types: _private::get_annotation_types::<>})))
|
||||||
builder.builder,
|
|
||||||
::capnp::schema::StructSchema::new(::capnp::introspect::RawBrandedStructSchema {
|
|
||||||
generic: &_private::RAW_SCHEMA,
|
|
||||||
field_types: _private::get_field_types,
|
|
||||||
annotation_types: _private::get_annotation_types,
|
|
||||||
}),
|
|
||||||
))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::ImbueMut<'a> for Builder<'a> {
|
impl <'a,> ::capnp::traits::ImbueMut<'a> for Builder<'a,> {
|
||||||
fn imbue_mut(&mut self, cap_table: &'a mut ::capnp::private::layout::CapTable) {
|
fn imbue_mut(&mut self, cap_table: &'a mut ::capnp::private::layout::CapTable) {
|
||||||
self.builder
|
self.builder.imbue(::capnp::private::layout::CapTableBuilder::Plain(cap_table))
|
||||||
.imbue(::capnp::private::layout::CapTableBuilder::Plain(cap_table))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::FromPointerBuilder<'a> for Builder<'a> {
|
impl <'a,> ::capnp::traits::FromPointerBuilder<'a> for Builder<'a,> {
|
||||||
fn init_pointer(builder: ::capnp::private::layout::PointerBuilder<'a>, _size: u32) -> Self {
|
fn init_pointer(builder: ::capnp::private::layout::PointerBuilder<'a>, _size: u32) -> Self {
|
||||||
builder
|
builder.init_struct(<Self as ::capnp::traits::HasStructSize>::STRUCT_SIZE).into()
|
||||||
.init_struct(<Self as ::capnp::traits::HasStructSize>::STRUCT_SIZE)
|
|
||||||
.into()
|
|
||||||
}
|
}
|
||||||
fn get_from_pointer(
|
fn get_from_pointer(builder: ::capnp::private::layout::PointerBuilder<'a>, default: ::core::option::Option<&'a [::capnp::Word]>) -> ::capnp::Result<Self> {
|
||||||
builder: ::capnp::private::layout::PointerBuilder<'a>,
|
::core::result::Result::Ok(builder.get_struct(<Self as ::capnp::traits::HasStructSize>::STRUCT_SIZE, default)?.into())
|
||||||
default: ::core::option::Option<&'a [::capnp::Word]>,
|
|
||||||
) -> ::capnp::Result<Self> {
|
|
||||||
::core::result::Result::Ok(
|
|
||||||
builder
|
|
||||||
.get_struct(
|
|
||||||
<Self as ::capnp::traits::HasStructSize>::STRUCT_SIZE,
|
|
||||||
default,
|
|
||||||
)?
|
|
||||||
.into(),
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ::capnp::traits::SetPointerBuilder for Reader<'a> {
|
impl <'a,> ::capnp::traits::SetPointerBuilder for Reader<'a,> {
|
||||||
fn set_pointer_builder(
|
fn set_pointer_builder(mut pointer: ::capnp::private::layout::PointerBuilder<'_>, value: Self, canonicalize: bool) -> ::capnp::Result<()> { pointer.set_struct(&value.reader, canonicalize) }
|
||||||
mut pointer: ::capnp::private::layout::PointerBuilder<'_>,
|
|
||||||
value: Self,
|
|
||||||
canonicalize: bool,
|
|
||||||
) -> ::capnp::Result<()> {
|
|
||||||
pointer.set_struct(&value.reader, canonicalize)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> Builder<'a> {
|
impl <'a,> Builder<'a,> {
|
||||||
pub fn into_reader(self) -> Reader<'a> {
|
pub fn into_reader(self) -> Reader<'a,> {
|
||||||
self.builder.into_reader().into()
|
self.builder.into_reader().into()
|
||||||
}
|
}
|
||||||
pub fn reborrow(&mut self) -> Builder<'_> {
|
pub fn reborrow(&mut self) -> Builder<'_,> {
|
||||||
Builder {
|
Builder { builder: self.builder.reborrow() }
|
||||||
builder: self.builder.reborrow(),
|
|
||||||
}
|
}
|
||||||
}
|
pub fn reborrow_as_reader(&self) -> Reader<'_,> {
|
||||||
pub fn reborrow_as_reader(&self) -> Reader<'_> {
|
|
||||||
self.builder.as_reader().into()
|
self.builder.as_reader().into()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -568,10 +392,7 @@ pub mod metadata {
|
|||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_domain(self) -> ::capnp::Result<::capnp::text::Builder<'a>> {
|
pub fn get_domain(self) -> ::capnp::Result<::capnp::text::Builder<'a>> {
|
||||||
::capnp::traits::FromPointerBuilder::get_from_pointer(
|
::capnp::traits::FromPointerBuilder::get_from_pointer(self.builder.get_pointer_field(0), ::core::option::Option::None)
|
||||||
self.builder.get_pointer_field(0),
|
|
||||||
::core::option::Option::None,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn set_domain(&mut self, value: ::capnp::text::Reader<'_>) {
|
pub fn set_domain(&mut self, value: ::capnp::text::Reader<'_>) {
|
||||||
@ -587,10 +408,7 @@ pub mod metadata {
|
|||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_entity(self) -> ::capnp::Result<::capnp::text::Builder<'a>> {
|
pub fn get_entity(self) -> ::capnp::Result<::capnp::text::Builder<'a>> {
|
||||||
::capnp::traits::FromPointerBuilder::get_from_pointer(
|
::capnp::traits::FromPointerBuilder::get_from_pointer(self.builder.get_pointer_field(1), ::core::option::Option::None)
|
||||||
self.builder.get_pointer_field(1),
|
|
||||||
::core::option::Option::None,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn set_entity(&mut self, value: ::capnp::text::Reader<'_>) {
|
pub fn set_entity(&mut self, value: ::capnp::text::Reader<'_>) {
|
||||||
@ -622,17 +440,14 @@ pub mod metadata {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Pipeline {
|
pub struct Pipeline { _typeless: ::capnp::any_pointer::Pipeline }
|
||||||
_typeless: ::capnp::any_pointer::Pipeline,
|
|
||||||
}
|
|
||||||
impl ::capnp::capability::FromTypelessPipeline for Pipeline {
|
impl ::capnp::capability::FromTypelessPipeline for Pipeline {
|
||||||
fn new(typeless: ::capnp::any_pointer::Pipeline) -> Self {
|
fn new(typeless: ::capnp::any_pointer::Pipeline) -> Self {
|
||||||
Self {
|
Self { _typeless: typeless, }
|
||||||
_typeless: typeless,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
impl Pipeline {
|
||||||
}
|
}
|
||||||
impl Pipeline {}
|
|
||||||
mod _private {
|
mod _private {
|
||||||
pub static ENCODED_NODE: [::capnp::Word; 79] = [
|
pub static ENCODED_NODE: [::capnp::Word; 79] = [
|
||||||
::capnp::word(0, 0, 0, 0, 5, 0, 6, 0),
|
::capnp::word(0, 0, 0, 0, 5, 0, 6, 0),
|
||||||
@ -724,20 +539,16 @@ pub mod metadata {
|
|||||||
_ => panic!("invalid field index {}", index),
|
_ => panic!("invalid field index {}", index),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn get_annotation_types(
|
pub fn get_annotation_types(child_index: Option<u16>, index: u32) -> ::capnp::introspect::Type {
|
||||||
child_index: Option<u16>,
|
|
||||||
index: u32,
|
|
||||||
) -> ::capnp::introspect::Type {
|
|
||||||
panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
|
panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
|
||||||
}
|
}
|
||||||
pub static RAW_SCHEMA: ::capnp::introspect::RawStructSchema =
|
pub static RAW_SCHEMA: ::capnp::introspect::RawStructSchema = ::capnp::introspect::RawStructSchema {
|
||||||
::capnp::introspect::RawStructSchema {
|
|
||||||
encoded_node: &ENCODED_NODE,
|
encoded_node: &ENCODED_NODE,
|
||||||
nonunion_members: NONUNION_MEMBERS,
|
nonunion_members: NONUNION_MEMBERS,
|
||||||
members_by_discriminant: MEMBERS_BY_DISCRIMINANT,
|
members_by_discriminant: MEMBERS_BY_DISCRIMINANT,
|
||||||
};
|
};
|
||||||
pub static NONUNION_MEMBERS: &[u16] = &[0, 1, 2, 3];
|
pub static NONUNION_MEMBERS : &[u16] = &[0,1,2,3];
|
||||||
pub static MEMBERS_BY_DISCRIMINANT: &[u16] = &[];
|
pub static MEMBERS_BY_DISCRIMINANT : &[u16] = &[];
|
||||||
pub const TYPE_ID: u64 = 0x9344_9677_212b_0ac1;
|
pub const TYPE_ID: u64 = 0x9344_9677_212b_0ac1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@ async fn main() -> anyhow::Result<()> {
|
|||||||
let counter = inner_counter.clone();
|
let counter = inner_counter.clone();
|
||||||
|
|
||||||
async move {
|
async move {
|
||||||
tracing::info!(
|
tracing::debug!(
|
||||||
"subscription got event: {}, info: {}",
|
"subscription got event: {}, info: {}",
|
||||||
item.name,
|
item.name,
|
||||||
item.int_event_info(),
|
item.int_event_info(),
|
||||||
|
Loading…
Reference in New Issue
Block a user