[][src]Function rustils::parse::ubyte::bool_to_u8_res

pub fn bool_to_u8_res(a: bool) -> ParseResultU8

Parse bool to u8

If a is false then returns Ok(0).
If a is true then returns Ok(1).

Arguments

Examples

use rustils::parse::ubyte::bool_to_u8_res;

assert_eq!(bool_to_u8_res(true), Ok(1_u8));
assert_eq!(bool_to_u8_res(false), Ok(0_u8));