pub enum ProtoData {
Varint(u64),
Fix64(i64),
Fix32(i32),
Bytes(Vec<u8>),
String(String),
Repeated(Vec<ProtoData>),
Message(Map<u64, ProtoData>),
}
Variants§
Varint(u64)
Fix64(i64)
Fix32(i32)
Bytes(Vec<u8>)
String(String)
Repeated(Vec<ProtoData>)
Message(Map<u64, ProtoData>)
Trait Implementations§
impl Eq for ProtoData
impl StructuralPartialEq for ProtoData
Auto Trait Implementations§
impl Freeze for ProtoData
impl RefUnwindSafe for ProtoData
impl Send for ProtoData
impl Sync for ProtoData
impl Unpin for ProtoData
impl UnwindSafe for ProtoData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more