risingwave_common/types/
native_type.rs1use std::fmt::Debug;
16use std::io::Write;
17
18use super::{F32, F64, Serial};
19use crate::array::ArrayResult;
20
21pub trait NativeType:
22 PartialOrd + PartialEq + Debug + Copy + Send + Sync + Sized + Default + 'static
23{
24 fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize>;
25}
26
27impl NativeType for i16 {
28 fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize> {
29 output.write(&self.to_be_bytes()).map_err(Into::into)
30 }
31}
32
33impl NativeType for i32 {
34 fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize> {
35 output.write(&self.to_be_bytes()).map_err(Into::into)
36 }
37}
38
39impl NativeType for i64 {
40 fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize> {
41 output.write(&self.to_be_bytes()).map_err(Into::into)
42 }
43}
44
45impl NativeType for Serial {
46 fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize> {
47 output
48 .write(&self.into_inner().to_be_bytes())
49 .map_err(Into::into)
50 }
51}
52
53impl NativeType for F32 {
54 fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize> {
55 output.write(&self.0.to_be_bytes()).map_err(Into::into)
56 }
57}
58
59impl NativeType for F64 {
60 fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize> {
61 output.write(&self.0.to_be_bytes()).map_err(Into::into)
62 }
63}
64
65impl NativeType for u8 {
66 fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize> {
67 output.write(&self.to_be_bytes()).map_err(Into::into)
68 }
69}
70
71impl NativeType for u16 {
72 fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize> {
73 output.write(&self.to_be_bytes()).map_err(Into::into)
74 }
75}
76
77impl NativeType for u32 {
78 fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize> {
79 output.write(&self.to_be_bytes()).map_err(Into::into)
80 }
81}
82
83impl NativeType for u64 {
84 fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize> {
85 output.write(&self.to_be_bytes()).map_err(Into::into)
86 }
87}