Struct profile_traits::mem::ProfilerChan
source · pub struct ProfilerChan(pub IpcSender<ProfilerMsg>);
Expand description
Front-end representation of the profiler used to communicate with the profiler.
Tuple Fields§
§0: IpcSender<ProfilerMsg>
Implementations§
source§impl ProfilerChan
impl ProfilerChan
sourcepub fn send(&self, msg: ProfilerMsg)
pub fn send(&self, msg: ProfilerMsg)
Send msg
on this IpcSender
.
Warns if the send fails.
sourcepub fn run_with_memory_reporting<F, M, T, C>(
&self,
f: F,
reporter_name: String,
channel_for_reporter: C,
msg: M,
)where
F: FnOnce(),
M: Fn(ReportsChan) -> T + Send + 'static,
T: Send + 'static,
C: OpaqueSender<T> + Send + 'static,
pub fn run_with_memory_reporting<F, M, T, C>(
&self,
f: F,
reporter_name: String,
channel_for_reporter: C,
msg: M,
)where
F: FnOnce(),
M: Fn(ReportsChan) -> T + Send + 'static,
T: Send + 'static,
C: OpaqueSender<T> + Send + 'static,
Runs f()
with memory profiling.
Trait Implementations§
source§impl Clone for ProfilerChan
impl Clone for ProfilerChan
source§fn clone(&self) -> ProfilerChan
fn clone(&self) -> ProfilerChan
Returns a copy 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 moresource§impl Debug for ProfilerChan
impl Debug for ProfilerChan
source§impl<'de> Deserialize<'de> for ProfilerChan
impl<'de> Deserialize<'de> for ProfilerChan
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 ProfilerChan
impl !RefUnwindSafe for ProfilerChan
impl Send for ProfilerChan
impl !Sync for ProfilerChan
impl Unpin for ProfilerChan
impl UnwindSafe for ProfilerChan
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