use crate::FfiSlice; #[repr(C)] pub enum Result { Ok(T), Err(E), } #[repr(C)] pub struct Error { last_error: FfiSlice, }