pub const BENCODEX_NULL: BencodexValue;Expand description
The constant of BencodexValue::Null.
use bencodex::{ Encode, BENCODEX_NULL };
let mut buf = vec![];
BENCODEX_NULL.encode(&mut buf);
assert_eq!(buf, b"n")pub const BENCODEX_NULL: BencodexValue;The constant of BencodexValue::Null.
use bencodex::{ Encode, BENCODEX_NULL };
let mut buf = vec![];
BENCODEX_NULL.encode(&mut buf);
assert_eq!(buf, b"n")