pub struct DiffProfile {
pub req1: RequestProfile,
pub req2: RequestProfile,
pub res: ResponseProfile,
}Fields§
§req1: RequestProfile§req2: RequestProfile§res: ResponseProfileImplementations§
Source§impl DiffProfile
impl DiffProfile
pub fn new( req1: RequestProfile, req2: RequestProfile, res: ResponseProfile, ) -> Self
pub async fn diff(&self, args: ExtraArgs) -> Result<String>
Trait Implementations§
Source§impl Clone for DiffProfile
impl Clone for DiffProfile
Source§fn clone(&self) -> DiffProfile
fn clone(&self) -> DiffProfile
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 DiffProfile
impl Debug for DiffProfile
Source§impl<'de> Deserialize<'de> for DiffProfile
impl<'de> Deserialize<'de> for DiffProfile
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 Serialize for DiffProfile
impl Serialize for DiffProfile
Source§impl ValidateConfig for DiffProfile
impl ValidateConfig for DiffProfile
Auto Trait Implementations§
impl Freeze for DiffProfile
impl RefUnwindSafe for DiffProfile
impl Send for DiffProfile
impl Sync for DiffProfile
impl Unpin for DiffProfile
impl UnsafeUnpin for DiffProfile
impl UnwindSafe for DiffProfile
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