pub type WriteResult = Result<(), WriteError>;
pub enum WriteResult { Ok(()), Err(WriteError), }
Contains the success value
Contains the error value