pub struct PprofParams {
pub duration_secs: Option<u64>,
}Expand description
Parameters for profiling.
Fields§
§duration_secs: Option<u64>Duration to profile in seconds. Defaults 10s.
Trait Implementations§
Source§impl Clone for PprofParams
impl Clone for PprofParams
Source§fn clone(&self) -> PprofParams
fn clone(&self) -> PprofParams
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 PprofParams
impl Debug for PprofParams
Source§impl Default for PprofParams
impl Default for PprofParams
Source§fn default() -> PprofParams
fn default() -> PprofParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PprofParams
impl<'de> Deserialize<'de> for PprofParams
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 PprofParams
impl RefUnwindSafe for PprofParams
impl Send for PprofParams
impl Sync for PprofParams
impl Unpin for PprofParams
impl UnsafeUnpin for PprofParams
impl UnwindSafe for PprofParams
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