caretta-sync/core/src/ipc.rs
2025-08-05 08:17:35 +09:00

4 lines
No EOL
88 B
Rust

pub trait Message {
fn into_vec_u8(self) -> Vec<u8>;
fn from_vec_u8() -> Self;
}