//! Provides functionality for Cap'n Proto (de)serialization.
pubtraitCapnpWrite<'a> {/// The Builder that was autogenerated by capnp.
typeBuilder;/// Write the struct into the message that is being built by the Builder.
fnwrite_capnp(&self, builder:&mutSelf::Builder);}pubtraitCapnpRead<'a> {/// The Reader that was autogenerated by capnp.
typeReader;/// Read the struct from the Reader.
fnread_capnp(reader:Self::Reader)->Self;}