pub struct RunMetadata {
pub id: Uuid,
pub timestamp: DateTime<Utc>,
pub adapter: Adapter,
pub input: RunInput,
pub request_headers: BTreeMap<String, String>,
pub request_body: BodyCapture,
}Expand description
Metadata supplied by an adapter when handing captured targets to core.
Fields§
§id: Uuid§timestamp: DateTime<Utc>§adapter: Adapter§input: RunInput§request_headers: BTreeMap<String, String>§request_body: BodyCaptureTrait Implementations§
Source§impl Clone for RunMetadata
impl Clone for RunMetadata
Source§fn clone(&self) -> RunMetadata
fn clone(&self) -> RunMetadata
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 moreAuto Trait Implementations§
impl Freeze for RunMetadata
impl RefUnwindSafe for RunMetadata
impl Send for RunMetadata
impl Sync for RunMetadata
impl Unpin for RunMetadata
impl UnsafeUnpin for RunMetadata
impl UnwindSafe for RunMetadata
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