pub enum EntryType {
Boolean,
Double,
String,
RawData,
BooleanArray,
DoubleArray,
StringArray,
RpcDefinition,
}
Variants§
Implementations§
Source§impl EntryType
impl EntryType
pub fn write_value(self, value: &EntryValue, buf: &mut BytesMut) -> Result<()>
pub fn read_value(self, buf: &mut dyn Buf) -> Result<(EntryValue, usize)>
Trait Implementations§
impl Copy for EntryType
impl Eq for EntryType
impl StructuralPartialEq for EntryType
Auto Trait Implementations§
impl Freeze for EntryType
impl RefUnwindSafe for EntryType
impl Send for EntryType
impl Sync for EntryType
impl Unpin for EntryType
impl UnwindSafe for EntryType
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