BENCODEX_NULL

Constant BENCODEX_NULL 

Source
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")