pub enum HeapAction {
Take {
path: PathBuf,
},
Close {
path: PathBuf,
},
Compare {
base: PathBuf,
current: PathBuf,
class_index: Option<u64>,
},
Summary {
path: PathBuf,
},
Details {
path: PathBuf,
filter_name: Option<String>,
page_idx: Option<usize>,
page_size: Option<usize>,
},
ClassNodes {
path: PathBuf,
id: u64,
filter_name: Option<String>,
page_idx: Option<usize>,
page_size: Option<usize>,
},
Dominators {
path: PathBuf,
node: u64,
},
DupStrings {
path: PathBuf,
page_idx: Option<usize>,
page_size: Option<usize>,
},
Edges {
path: PathBuf,
node: u64,
page_idx: Option<usize>,
page_size: Option<usize>,
},
Retainers {
path: PathBuf,
node: u64,
page_idx: Option<usize>,
page_size: Option<usize>,
},
Paths {
path: PathBuf,
node: u64,
max_depth: u64,
max_nodes: Option<u64>,
max_siblings: Option<u64>,
},
ObjectDetails {
path: PathBuf,
node: u64,
},
}Variants§
Take
Close
Compare
Fields
Summary
Details
ClassNodes
Fields
Dominators
DupStrings
Edges
Retainers
Paths
ObjectDetails
Detailed info for one heap object (size, distance, retained size, detachedness)
Trait Implementations§
Source§impl Clone for HeapAction
impl Clone for HeapAction
Source§fn clone(&self) -> HeapAction
fn clone(&self) -> HeapAction
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 HeapAction
impl Debug for HeapAction
Source§impl FromArgMatches for HeapAction
impl FromArgMatches for HeapAction
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Subcommand for HeapAction
impl Subcommand for HeapAction
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self can parse a specific subcommandAuto Trait Implementations§
impl Freeze for HeapAction
impl RefUnwindSafe for HeapAction
impl Send for HeapAction
impl Sync for HeapAction
impl Unpin for HeapAction
impl UnsafeUnpin for HeapAction
impl UnwindSafe for HeapAction
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more