pub struct SingleHttpPlan {
pub hypothesis: Option<String>,
pub request: LiveHttpRequest,
pub baseline: Option<LiveHttpRequest>,
pub benign: Option<LiveHttpRequest>,
pub oracle: HttpOracle,
pub why_this_confirms: Option<String>,
}Fields§
§hypothesis: Option<String>§request: LiveHttpRequest§baseline: Option<LiveHttpRequest>§benign: Option<LiveHttpRequest>§oracle: HttpOracle§why_this_confirms: Option<String>Trait Implementations§
Source§impl Clone for SingleHttpPlan
impl Clone for SingleHttpPlan
Source§fn clone(&self) -> SingleHttpPlan
fn clone(&self) -> SingleHttpPlan
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 SingleHttpPlan
impl Debug for SingleHttpPlan
Source§impl<'de> Deserialize<'de> for SingleHttpPlan
impl<'de> Deserialize<'de> for SingleHttpPlan
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
Source§impl PartialEq for SingleHttpPlan
impl PartialEq for SingleHttpPlan
Source§fn eq(&self, other: &SingleHttpPlan) -> bool
fn eq(&self, other: &SingleHttpPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SingleHttpPlan
impl Serialize for SingleHttpPlan
impl StructuralPartialEq for SingleHttpPlan
Auto Trait Implementations§
impl Freeze for SingleHttpPlan
impl RefUnwindSafe for SingleHttpPlan
impl Send for SingleHttpPlan
impl Sync for SingleHttpPlan
impl Unpin for SingleHttpPlan
impl UnsafeUnpin for SingleHttpPlan
impl UnwindSafe for SingleHttpPlan
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