pub struct ProxyMatchingConfig {
pub enabled: bool,
}Fields§
§enabled: boolWhen true, strip proxy prefix (e.g. cloud__get_issues → get_issues)
and look up hardcoded defaults (default: true).
Trait Implementations§
Source§impl Clone for ProxyMatchingConfig
impl Clone for ProxyMatchingConfig
Source§fn clone(&self) -> ProxyMatchingConfig
fn clone(&self) -> ProxyMatchingConfig
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 moreSource§impl Debug for ProxyMatchingConfig
impl Debug for ProxyMatchingConfig
Source§impl Default for ProxyMatchingConfig
impl Default for ProxyMatchingConfig
Source§impl<'de> Deserialize<'de> for ProxyMatchingConfig
impl<'de> Deserialize<'de> for ProxyMatchingConfig
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
Auto Trait Implementations§
impl Freeze for ProxyMatchingConfig
impl RefUnwindSafe for ProxyMatchingConfig
impl Send for ProxyMatchingConfig
impl Sync for ProxyMatchingConfig
impl Unpin for ProxyMatchingConfig
impl UnsafeUnpin for ProxyMatchingConfig
impl UnwindSafe for ProxyMatchingConfig
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