pub struct AdaptiveHintsComponentConfig {
pub priority: i32,
pub break_chain: bool,
pub inject_header: bool,
pub inject_body_path: String,
}Expand description
Typed helper for adaptive hints settings.
Fields§
§priority: i32Intercept priority. Lower values run first.
break_chain: boolWhether later request intercepts should be skipped after this one runs.
inject_header: boolWhether to inject the adaptive hints header.
inject_body_path: StringJSON path used when injecting request-body hints.
Trait Implementations§
Source§impl Clone for AdaptiveHintsComponentConfig
impl Clone for AdaptiveHintsComponentConfig
Source§fn clone(&self) -> AdaptiveHintsComponentConfig
fn clone(&self) -> AdaptiveHintsComponentConfig
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 AdaptiveHintsComponentConfig
impl Debug for AdaptiveHintsComponentConfig
Source§impl<'de> Deserialize<'de> for AdaptiveHintsComponentConfig
impl<'de> Deserialize<'de> for AdaptiveHintsComponentConfig
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 AdaptiveHintsComponentConfig
impl RefUnwindSafe for AdaptiveHintsComponentConfig
impl Send for AdaptiveHintsComponentConfig
impl Sync for AdaptiveHintsComponentConfig
impl Unpin for AdaptiveHintsComponentConfig
impl UnsafeUnpin for AdaptiveHintsComponentConfig
impl UnwindSafe for AdaptiveHintsComponentConfig
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