#[repr(u8)]enum Tag {
Show 94 variants
Null = 0,
False = 1,
True = 2,
Int16 = 3,
Int32 = 4,
Int64 = 5,
UInt8 = 6,
UInt32 = 7,
Float32 = 8,
Float64 = 9,
Date = 10,
Time = 11,
Timestamp = 12,
TimestampTz = 13,
Interval = 14,
BytesTiny = 15,
BytesShort = 16,
BytesLong = 17,
BytesHuge = 18,
StringTiny = 19,
StringShort = 20,
StringLong = 21,
StringHuge = 22,
Uuid = 23,
Array = 24,
ListTiny = 25,
ListShort = 26,
ListLong = 27,
ListHuge = 28,
Dict = 29,
JsonNull = 30,
Dummy = 31,
Numeric = 32,
UInt16 = 33,
UInt64 = 34,
MzTimestamp = 35,
Range = 36,
MzAclItem = 37,
AclItem = 38,
CheapTimestamp = 39,
CheapTimestampTz = 40,
NonNegativeInt16_0 = 41,
NonNegativeInt16_8 = 42,
NonNegativeInt16_16 = 43,
NonNegativeInt32_0 = 44,
NonNegativeInt32_8 = 45,
NonNegativeInt32_16 = 46,
NonNegativeInt32_24 = 47,
NonNegativeInt32_32 = 48,
NonNegativeInt64_0 = 49,
NonNegativeInt64_8 = 50,
NonNegativeInt64_16 = 51,
NonNegativeInt64_24 = 52,
NonNegativeInt64_32 = 53,
NonNegativeInt64_40 = 54,
NonNegativeInt64_48 = 55,
NonNegativeInt64_56 = 56,
NonNegativeInt64_64 = 57,
NegativeInt16_0 = 58,
NegativeInt16_8 = 59,
NegativeInt16_16 = 60,
NegativeInt32_0 = 61,
NegativeInt32_8 = 62,
NegativeInt32_16 = 63,
NegativeInt32_24 = 64,
NegativeInt32_32 = 65,
NegativeInt64_0 = 66,
NegativeInt64_8 = 67,
NegativeInt64_16 = 68,
NegativeInt64_24 = 69,
NegativeInt64_32 = 70,
NegativeInt64_40 = 71,
NegativeInt64_48 = 72,
NegativeInt64_56 = 73,
NegativeInt64_64 = 74,
UInt8_0 = 75,
UInt8_8 = 76,
UInt16_0 = 77,
UInt16_8 = 78,
UInt16_16 = 79,
UInt32_0 = 80,
UInt32_8 = 81,
UInt32_16 = 82,
UInt32_24 = 83,
UInt32_32 = 84,
UInt64_0 = 85,
UInt64_8 = 86,
UInt64_16 = 87,
UInt64_24 = 88,
UInt64_32 = 89,
UInt64_40 = 90,
UInt64_48 = 91,
UInt64_56 = 92,
UInt64_64 = 93,
}
Variants§
Null = 0
False = 1
True = 2
Int16 = 3
Int32 = 4
Int64 = 5
UInt8 = 6
UInt32 = 7
Float32 = 8
Float64 = 9
Date = 10
Time = 11
Timestamp = 12
TimestampTz = 13
Interval = 14
BytesTiny = 15
BytesShort = 16
BytesLong = 17
BytesHuge = 18
StringTiny = 19
StringShort = 20
StringLong = 21
StringHuge = 22
Uuid = 23
Array = 24
ListTiny = 25
ListShort = 26
ListLong = 27
ListHuge = 28
Dict = 29
JsonNull = 30
Dummy = 31
Numeric = 32
UInt16 = 33
UInt64 = 34
MzTimestamp = 35
Range = 36
MzAclItem = 37
AclItem = 38
CheapTimestamp = 39
CheapTimestampTz = 40
NonNegativeInt16_0 = 41
NonNegativeInt16_8 = 42
NonNegativeInt16_16 = 43
NonNegativeInt32_0 = 44
NonNegativeInt32_8 = 45
NonNegativeInt32_16 = 46
NonNegativeInt32_24 = 47
NonNegativeInt32_32 = 48
NonNegativeInt64_0 = 49
NonNegativeInt64_8 = 50
NonNegativeInt64_16 = 51
NonNegativeInt64_24 = 52
NonNegativeInt64_32 = 53
NonNegativeInt64_40 = 54
NonNegativeInt64_48 = 55
NonNegativeInt64_56 = 56
NonNegativeInt64_64 = 57
NegativeInt16_0 = 58
NegativeInt16_8 = 59
NegativeInt16_16 = 60
NegativeInt32_0 = 61
NegativeInt32_8 = 62
NegativeInt32_16 = 63
NegativeInt32_24 = 64
NegativeInt32_32 = 65
NegativeInt64_0 = 66
NegativeInt64_8 = 67
NegativeInt64_16 = 68
NegativeInt64_24 = 69
NegativeInt64_32 = 70
NegativeInt64_40 = 71
NegativeInt64_48 = 72
NegativeInt64_56 = 73
NegativeInt64_64 = 74
UInt8_0 = 75
UInt8_8 = 76
UInt16_0 = 77
UInt16_8 = 78
UInt16_16 = 79
UInt32_0 = 80
UInt32_8 = 81
UInt32_16 = 82
UInt32_24 = 83
UInt32_32 = 84
UInt64_0 = 85
UInt64_8 = 86
UInt64_16 = 87
UInt64_24 = 88
UInt64_32 = 89
UInt64_40 = 90
UInt64_48 = 91
UInt64_56 = 92
UInt64_64 = 93
Implementations§
Trait Implementations§
source§impl TryFrom<u8> for Tag
impl TryFrom<u8> for Tag
§type Error = TryFromPrimitiveError<Tag>
type Error = TryFromPrimitiveError<Tag>
The type returned in the event of a conversion error.
source§impl TryFromPrimitive for Tag
impl TryFromPrimitive for Tag
impl Copy for Tag
impl Eq for Tag
impl StructuralPartialEq for Tag
Auto Trait Implementations§
impl Freeze for Tag
impl RefUnwindSafe for Tag
impl Send for Tag
impl Sync for Tag
impl Unpin for Tag
impl UnwindSafe for Tag
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
source§impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> ProgressEventTimestamp for T
impl<T> ProgressEventTimestamp for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
See
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
See
RustType::into_proto
.source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.