pub enum Trace_HTTP_Method {
UNKNOWN = 0,
OPTIONS = 1,
GET = 2,
HEAD = 3,
POST = 4,
PUT = 5,
DELETE = 6,
TRACE = 7,
CONNECT = 8,
PATCH = 9,
}
Variants§
UNKNOWN = 0
OPTIONS = 1
GET = 2
HEAD = 3
POST = 4
PUT = 5
DELETE = 6
TRACE = 7
CONNECT = 8
PATCH = 9
Trait Implementations§
Source§impl Clone for Trace_HTTP_Method
impl Clone for Trace_HTTP_Method
Source§fn clone(&self) -> Trace_HTTP_Method
fn clone(&self) -> Trace_HTTP_Method
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Trace_HTTP_Method
impl Debug for Trace_HTTP_Method
Source§impl Default for Trace_HTTP_Method
impl Default for Trace_HTTP_Method
Source§impl Hash for Trace_HTTP_Method
impl Hash for Trace_HTTP_Method
Source§impl PartialEq for Trace_HTTP_Method
impl PartialEq for Trace_HTTP_Method
Source§impl ProtobufEnum for Trace_HTTP_Method
impl ProtobufEnum for Trace_HTTP_Method
Source§fn from_i32(value: i32) -> Option<Trace_HTTP_Method>
fn from_i32(value: i32) -> Option<Trace_HTTP_Method>
Try to create an enum from
i32
value.
Return None
if value is unknown.Source§fn enum_descriptor_static() -> &'static EnumDescriptor
fn enum_descriptor_static() -> &'static EnumDescriptor
Get enum descriptor by type.
Source§fn descriptor(&self) -> &'static EnumValueDescriptor
fn descriptor(&self) -> &'static EnumValueDescriptor
Get enum value descriptor.
Source§fn enum_descriptor(&self) -> &'static EnumDescriptor
fn enum_descriptor(&self) -> &'static EnumDescriptor
Get enum descriptor.
Source§impl ProtobufValue for Trace_HTTP_Method
impl ProtobufValue for Trace_HTTP_Method
Source§fn as_ref(&self) -> ReflectValueRef<'_>
fn as_ref(&self) -> ReflectValueRef<'_>
As ref
Source§fn is_non_zero(&self) -> bool
fn is_non_zero(&self) -> bool
Is value non-zero?
Source§fn as_ref_copy(&self) -> ReflectValueRef<'static>
fn as_ref_copy(&self) -> ReflectValueRef<'static>
impl Copy for Trace_HTTP_Method
impl Eq for Trace_HTTP_Method
impl StructuralPartialEq for Trace_HTTP_Method
Auto Trait Implementations§
impl Freeze for Trace_HTTP_Method
impl RefUnwindSafe for Trace_HTTP_Method
impl Send for Trace_HTTP_Method
impl Sync for Trace_HTTP_Method
impl Unpin for Trace_HTTP_Method
impl UnwindSafe for Trace_HTTP_Method
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