pub struct ExtractBooks {
output: PathBuf,
book_codes: bool,
field_name: String,
join_file: Option<PathBuf>,
join_field: Option<String>,
namespace: String,
}
Expand description
Extract cluster book codes for a particular namespace.
Fields§
§output: PathBuf
Specify output file
book_codes: bool
Output numspaced book codes instead of original IDs.
field_name: String
Specify the name of the book code field.
join_file: Option<PathBuf>
Specify an additional file to join into the results.
join_field: Option<String>
Speficy a field to read from the join file.
namespace: String
Extract book codes in namespace NS.
Trait Implementations§
source§impl Args for ExtractBooks
impl Args for ExtractBooks
source§fn group_id() -> Option<Id>
fn group_id() -> Option<Id>
Report the [
ArgGroup::id
][crate::ArgGroup::id] for this set of argumentssource§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
source§impl Debug for ExtractBooks
impl Debug for ExtractBooks
source§impl From<ExtractBooks> for ClusterCommand
impl From<ExtractBooks> for ClusterCommand
source§fn from(v: ExtractBooks) -> ClusterCommand
fn from(v: ExtractBooks) -> ClusterCommand
Converts to this type from the input type.
source§impl FromArgMatches for ExtractBooks
impl FromArgMatches for ExtractBooks
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<ExtractBooks> for ClusterCommand
impl TryInto<ExtractBooks> for ClusterCommand
Auto Trait Implementations§
impl RefUnwindSafe for ExtractBooks
impl Send for ExtractBooks
impl Sync for ExtractBooks
impl Unpin for ExtractBooks
impl UnwindSafe for ExtractBooks
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