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>
Object Safety§
This trait is not object safe.