pub struct BodySamplesBundle {
pub baseline: String,
pub probe: String,
}Expand description
Per-side body samples, UTF-8-safe truncated to 256 bytes with a
(truncated, total Nb) marker when over cap, or <N bytes, non-text>
when not valid UTF-8.
Fields§
§baseline: StringBody sample of the baseline response.
probe: StringBody sample of the probe response.
Trait Implementations§
Source§impl Clone for BodySamplesBundle
impl Clone for BodySamplesBundle
Source§fn clone(&self) -> BodySamplesBundle
fn clone(&self) -> BodySamplesBundle
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 BodySamplesBundle
impl Debug for BodySamplesBundle
Source§impl<'de> Deserialize<'de> for BodySamplesBundle
impl<'de> Deserialize<'de> for BodySamplesBundle
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 BodySamplesBundle
impl RefUnwindSafe for BodySamplesBundle
impl Send for BodySamplesBundle
impl Sync for BodySamplesBundle
impl Unpin for BodySamplesBundle
impl UnsafeUnpin for BodySamplesBundle
impl UnwindSafe for BodySamplesBundle
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