added missing doc_cfg attribute #63

Merged
muellerr merged 1 commits from add-missing-doc-cfg-attr into main 2024-02-19 20:12:16 +01:00

View File

@ -77,6 +77,7 @@ pub trait UnsignedEnum {
fn value(&self) -> u64;
#[cfg(feature = "alloc")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))]
fn to_vec(&self) -> alloc::vec::Vec<u8> {
let mut buf = alloc::vec![0; self.size()];
self.write_to_be_bytes(&mut buf).unwrap();