pub trait NativeType:
PartialOrd
+ PartialEq
+ Debug
+ Copy
+ Send
+ Sync
+ Sized
+ Default
+ 'static {
// Required method
fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize>;
}
Required Methods§
fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.