pub struct OnionPerfRunner {
pub host_name: String,
pub onionperf_analysis_receiver_stream: Arc<Mutex<UnboundedReceiverStream<OnionPerfAnalysis>>>,
/* private fields */
}
Expand description
The client to connect to a OnionPerfRunner Host and get the most recent OnionPerf Analysis file at certain intervals
Fields§
§host_name: String
Name of the host Eg. “op-de7a”
onionperf_analysis_receiver_stream: Arc<Mutex<UnboundedReceiverStream<OnionPerfAnalysis>>>
The receiver stream to receive the OnionPerfAnalysis files
Implementations§
Auto Trait Implementations§
impl !Freeze for OnionPerfRunner
impl !RefUnwindSafe for OnionPerfRunner
impl Send for OnionPerfRunner
impl Sync for OnionPerfRunner
impl Unpin for OnionPerfRunner
impl !UnwindSafe for OnionPerfRunner
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