pub type WriteResult = Result<u64, WriteError>;
Expand description
Represents the result of attempting a syscall write on the file descriptor
Aliased Type§
enum WriteResult {
Ok(u64),
Err(WriteError),
}
pub type WriteResult = Result<u64, WriteError>;
Represents the result of attempting a syscall write on the file descriptor
enum WriteResult {
Ok(u64),
Err(WriteError),
}