#[repr(i32)]pub enum FileAuthMethod {
Get = 0,
Head = 1,
Put = 2,
Delete = 3,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FileAuthMethod
impl Clone for FileAuthMethod
Source§fn clone(&self) -> FileAuthMethod
fn clone(&self) -> FileAuthMethod
Returns a copy 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 FileAuthMethod
impl Debug for FileAuthMethod
Source§impl Default for FileAuthMethod
impl Default for FileAuthMethod
Source§fn default() -> FileAuthMethod
fn default() -> FileAuthMethod
Returns the “default value” for a type. Read more
Source§impl From<FileAuthMethod> for i32
impl From<FileAuthMethod> for i32
Source§fn from(value: FileAuthMethod) -> i32
fn from(value: FileAuthMethod) -> i32
Converts to this type from the input type.
Source§impl Hash for FileAuthMethod
impl Hash for FileAuthMethod
Source§impl Ord for FileAuthMethod
impl Ord for FileAuthMethod
Source§fn cmp(&self, other: &FileAuthMethod) -> Ordering
fn cmp(&self, other: &FileAuthMethod) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FileAuthMethod
impl PartialEq for FileAuthMethod
Source§impl PartialOrd for FileAuthMethod
impl PartialOrd for FileAuthMethod
impl Copy for FileAuthMethod
impl Eq for FileAuthMethod
impl StructuralPartialEq for FileAuthMethod
Auto Trait Implementations§
impl Freeze for FileAuthMethod
impl RefUnwindSafe for FileAuthMethod
impl Send for FileAuthMethod
impl Sync for FileAuthMethod
impl Unpin for FileAuthMethod
impl UnwindSafe for FileAuthMethod
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