#[repr(u16)]pub enum IntMetaKey {
Show 24 variants
TransportType = 1,
LogId = 2,
FromService = 3,
FromCluster = 4,
FromIdc = 5,
ToService = 6,
ToMethod = 9,
ToCluster = 7,
ToIdc = 8,
Env = 10,
DestAddress = 11,
RPCTimeoutMs = 12,
RingHashKey = 14,
WithHeader = 16,
ConnTimeoutMs = 17,
TraceSpanCtx = 18,
ShortConnection = 19,
FromMethod = 20,
StressTag = 21,
MsgType = 22,
ConnectionRecycle = 23,
RawRingHashKey = 24,
LBType = 25,
ClusterShardId = 26,
}Variants§
TransportType = 1
LogId = 2
FromService = 3
FromCluster = 4
FromIdc = 5
ToService = 6
ToMethod = 9
ToCluster = 7
ToIdc = 8
Env = 10
DestAddress = 11
RPCTimeoutMs = 12
RingHashKey = 14
WithHeader = 16
ConnTimeoutMs = 17
TraceSpanCtx = 18
ShortConnection = 19
FromMethod = 20
StressTag = 21
MsgType = 22
ConnectionRecycle = 23
RawRingHashKey = 24
LBType = 25
ClusterShardId = 26
Trait Implementations§
Source§impl Clone for IntMetaKey
impl Clone for IntMetaKey
Source§fn clone(&self) -> IntMetaKey
fn clone(&self) -> IntMetaKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IntMetaKey
Source§impl Debug for IntMetaKey
impl Debug for IntMetaKey
impl Eq for IntMetaKey
Source§impl Hash for IntMetaKey
impl Hash for IntMetaKey
Source§impl PartialEq for IntMetaKey
impl PartialEq for IntMetaKey
Source§fn eq(&self, other: &IntMetaKey) -> bool
fn eq(&self, other: &IntMetaKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IntMetaKey
Source§impl TryFrom<u16> for IntMetaKey
impl TryFrom<u16> for IntMetaKey
Source§type Error = TryFromPrimitiveError<IntMetaKey>
type Error = TryFromPrimitiveError<IntMetaKey>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for IntMetaKey
impl TryFromPrimitive for IntMetaKey
const NAME: &'static str = "IntMetaKey"
type Primitive = u16
type Error = TryFromPrimitiveError<IntMetaKey>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
Auto Trait Implementations§
impl Freeze for IntMetaKey
impl RefUnwindSafe for IntMetaKey
impl Send for IntMetaKey
impl Sync for IntMetaKey
impl Unpin for IntMetaKey
impl UnsafeUnpin for IntMetaKey
impl UnwindSafe for IntMetaKey
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