JMAP Registry API implementation - part 3

This commit is contained in:
mdecimus
2026-02-25 19:07:06 +01:00
parent c3586d9af6
commit f16e737221
47 changed files with 1775 additions and 1043 deletions

View File

@@ -182,6 +182,7 @@ impl_unsigned_leb128!(u64, [0, 7, 14, 21, 28, 35, 42, 49, 56, 63]);
impl_unsigned_leb128!(usize, [0, 7, 14, 21, 28, 35, 42, 49, 56, 63]);
impl Leb128Writer for Vec<u8> {
#[inline(always)]
fn write_leb128<T: Leb128_>(&mut self, value: T) -> std::io::Result<usize> {
T::to_leb128_writer(value, self)
}