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§
pub 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.
pub enum Result<T> {
Ok(ManuallyDrop<T>),
Err(String),
}