caretta-sync/core/src/ipc.rs

4 lines
88 B
Rust
Raw Normal View History

2025-06-17 07:20:24 +09:00
pub trait Message {
fn into_vec_u8(self) -> Vec<u8>;
fn from_vec_u8() -> Self;
}