pub type Result<T> = Result<ManuallyDrop<T>, String>;
Expand description
Result type for ToShmem::to_shmem.
The String is an error message describing why the call failed.
Aliased Type§
enum Result<T> {
Ok(ManuallyDrop<T>),
Err(String),
}
pub type Result<T> = Result<ManuallyDrop<T>, String>;
Result type for ToShmem::to_shmem.
The String is an error message describing why the call failed.
enum Result<T> {
Ok(ManuallyDrop<T>),
Err(String),
}