#[repr(u8)]pub enum KeyKind {
Show 45 variants
Namespace = 1,
Table = 2,
Row = 3,
NamespaceTable = 4,
SystemSequence = 5,
Columns = 6,
Column = 7,
RowSequence = 8,
ColumnPolicy = 9,
SystemVersion = 10,
TransactionVersion = 11,
Index = 12,
IndexEntry = 13,
ColumnSequence = 14,
CdcConsumer = 15,
View = 16,
NamespaceView = 17,
PrimaryKey = 18,
FlowNodeState = 19,
RingBuffer = 20,
NamespaceRingBuffer = 21,
RingBufferMetadata = 22,
PrimitiveRetentionPolicy = 23,
OperatorRetentionPolicy = 24,
Flow = 25,
NamespaceFlow = 26,
FlowNode = 27,
FlowNodeByFlow = 28,
FlowEdge = 29,
FlowEdgeByFlow = 30,
FlowNodeInternalState = 31,
Dictionary = 32,
DictionaryEntry = 33,
DictionaryEntryIndex = 34,
NamespaceDictionary = 35,
DictionarySequence = 36,
Metric = 37,
FlowVersion = 38,
Subscription = 39,
SubscriptionRow = 40,
SubscriptionColumn = 41,
Schema = 42,
SchemaField = 43,
SumType = 44,
NamespaceSumType = 45,
}Variants§
Namespace = 1
Table = 2
Row = 3
NamespaceTable = 4
SystemSequence = 5
Columns = 6
Column = 7
RowSequence = 8
ColumnPolicy = 9
SystemVersion = 10
TransactionVersion = 11
Index = 12
IndexEntry = 13
ColumnSequence = 14
CdcConsumer = 15
View = 16
NamespaceView = 17
PrimaryKey = 18
FlowNodeState = 19
RingBuffer = 20
NamespaceRingBuffer = 21
RingBufferMetadata = 22
PrimitiveRetentionPolicy = 23
OperatorRetentionPolicy = 24
Flow = 25
NamespaceFlow = 26
FlowNode = 27
FlowNodeByFlow = 28
FlowEdge = 29
FlowEdgeByFlow = 30
FlowNodeInternalState = 31
Dictionary = 32
DictionaryEntry = 33
DictionaryEntryIndex = 34
NamespaceDictionary = 35
DictionarySequence = 36
Metric = 37
FlowVersion = 38
Subscription = 39
SubscriptionRow = 40
SubscriptionColumn = 41
Schema = 42
SchemaField = 43
SumType = 44
NamespaceSumType = 45
Trait Implementations§
Source§impl<'de> Deserialize<'de> for KeyKind
impl<'de> Deserialize<'de> for KeyKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for KeyKind
impl Eq for KeyKind
impl StructuralPartialEq for KeyKind
Auto Trait Implementations§
impl Freeze for KeyKind
impl RefUnwindSafe for KeyKind
impl Send for KeyKind
impl Sync for KeyKind
impl Unpin for KeyKind
impl UnsafeUnpin for KeyKind
impl UnwindSafe for KeyKind
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§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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more