pub struct BreakpointMatcherEntry {
pub id: String,
pub http_request: Value,
pub phases: Vec<String>,
pub client_id: Option<String>,
}Expand description
An entry in the list of registered breakpoint matchers.
Fields§
§id: String§http_request: Value§phases: Vec<String>§client_id: Option<String>Trait Implementations§
Source§impl Clone for BreakpointMatcherEntry
impl Clone for BreakpointMatcherEntry
Source§fn clone(&self) -> BreakpointMatcherEntry
fn clone(&self) -> BreakpointMatcherEntry
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 BreakpointMatcherEntry
impl Debug for BreakpointMatcherEntry
Source§impl<'de> Deserialize<'de> for BreakpointMatcherEntry
impl<'de> Deserialize<'de> for BreakpointMatcherEntry
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 BreakpointMatcherEntry
impl RefUnwindSafe for BreakpointMatcherEntry
impl Send for BreakpointMatcherEntry
impl Sync for BreakpointMatcherEntry
impl Unpin for BreakpointMatcherEntry
impl UnsafeUnpin for BreakpointMatcherEntry
impl UnwindSafe for BreakpointMatcherEntry
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