pub struct ExtractGraph {
graph_file: Option<PathBuf>,
cluster: Option<i32>,
out_file: Option<PathBuf>,
}
Expand description
Extract a subgraph.
Fields§
§graph_file: Option<PathBuf>
§cluster: Option<i32>
§out_file: Option<PathBuf>
Trait Implementations§
Source§impl Args for ExtractGraph
impl Args for ExtractGraph
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§impl Debug for ExtractGraph
impl Debug for ExtractGraph
Source§impl From<ExtractGraph> for RootCommand
impl From<ExtractGraph> for RootCommand
Source§fn from(v: ExtractGraph) -> RootCommand
fn from(v: ExtractGraph) -> RootCommand
Converts to this type from the input type.
Source§impl FromArgMatches for ExtractGraph
impl FromArgMatches for ExtractGraph
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(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.Source§impl TryInto<ExtractGraph> for RootCommand
impl TryInto<ExtractGraph> for RootCommand
Auto Trait Implementations§
impl Freeze for ExtractGraph
impl RefUnwindSafe for ExtractGraph
impl Send for ExtractGraph
impl Sync for ExtractGraph
impl Unpin for ExtractGraph
impl UnwindSafe for ExtractGraph
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