Type Definition kripher::utils::ReadResult [] [src]

type ReadResult = Result<Vec<u8>, Error>;

Informs whether a read was successfull or not.

After a read try, return the content or an error explaining what went wrong. The content is of type Vec<u8>.