pub struct RecordData { /* private fields */ }
Implementations§
Source§impl RecordData
impl RecordData
pub fn new( time_stamp: u128, elapsed: u64, label: String, response_code: u16, response_message: String, thread_name: String, data_type: String, success: bool, failure_message: Option<String>, bytes: u64, sent_bytes: u64, grp_threads: u32, all_threads: u32, url: String, latency: u64, idle_time: u64, connect: u64, response_result: Option<ResponseResult>, ) -> Self
pub fn thread_name(&mut self, thread_name: String)
pub fn grp_threads(&mut self, grp_threads: u32)
pub fn all_threads(&mut self, all_threads: u32)
pub fn get_response_result(&self) -> Option<ResponseResult>
Trait Implementations§
Source§impl Clone for RecordData
impl Clone for RecordData
Source§fn clone(&self) -> RecordData
fn clone(&self) -> RecordData
Returns a duplicate of the value. Read more
1.0.0 · 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 RecordData
impl RefUnwindSafe for RecordData
impl Send for RecordData
impl Sync for RecordData
impl Unpin for RecordData
impl UnwindSafe for RecordData
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