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