pub enum FieldType {
ObjectId,
Boolean,
Char,
Float,
Double,
Byte,
Short,
Int,
Long,
}
Variants§
Implementations§
Source§impl FieldType
impl FieldType
Sourcepub fn parse_value<'a>(
&self,
input: &'a [u8],
id_size: IdSize,
) -> IResult<&'a [u8], FieldValue>
pub fn parse_value<'a>( &self, input: &'a [u8], id_size: IdSize, ) -> IResult<&'a [u8], FieldValue>
Returns the corresponding FieldValue
variant
pub fn java_type_name(&self) -> &'static str
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FieldType
impl RefUnwindSafe for FieldType
impl Send for FieldType
impl Sync for FieldType
impl Unpin for FieldType
impl UnwindSafe for FieldType
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