pub enum ProxyMethod {
Direct,
Auto,
Manual,
}Expand description
Proxy method type.
Variants§
Trait Implementations§
Source§impl Clone for ProxyMethod
impl Clone for ProxyMethod
Source§fn clone(&self) -> ProxyMethod
fn clone(&self) -> ProxyMethod
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 ProxyMethod
impl Debug for ProxyMethod
Source§impl From<ProxyMethod> for &'static str
impl From<ProxyMethod> for &'static str
Source§fn from(method: ProxyMethod) -> Self
fn from(method: ProxyMethod) -> Self
Converts to this type from the input type.
Source§impl FromStr for ProxyMethod
impl FromStr for ProxyMethod
Source§impl PartialEq for ProxyMethod
impl PartialEq for ProxyMethod
impl Eq for ProxyMethod
impl StructuralPartialEq for ProxyMethod
Auto Trait Implementations§
impl Freeze for ProxyMethod
impl RefUnwindSafe for ProxyMethod
impl Send for ProxyMethod
impl Sync for ProxyMethod
impl Unpin for ProxyMethod
impl UnwindSafe for ProxyMethod
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