pub struct LinkISBNIds {
rec_field: String,
isbn_fields: Vec<String>,
outfile: PathBuf,
infile: PathBuf,
}
Expand description
Link records to ISBN IDs.
Fields§
§rec_field: String
Read record IDs from RECFLD.
isbn_fields: Vec<String>
Read ISBNs from FIELD.
outfile: PathBuf
Write output to FILE.
infile: PathBuf
Read records from INPUT.
Trait Implementations§
Source§impl Args for LinkISBNIds
impl Args for LinkISBNIds
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§impl Debug for LinkISBNIds
impl Debug for LinkISBNIds
Source§impl From<LinkISBNIds> for RootCommand
impl From<LinkISBNIds> for RootCommand
Source§fn from(v: LinkISBNIds) -> RootCommand
fn from(v: LinkISBNIds) -> RootCommand
Converts to this type from the input type.
Source§impl FromArgMatches for LinkISBNIds
impl FromArgMatches for LinkISBNIds
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<LinkISBNIds> for RootCommand
impl TryInto<LinkISBNIds> for RootCommand
Auto Trait Implementations§
impl Freeze for LinkISBNIds
impl RefUnwindSafe for LinkISBNIds
impl Send for LinkISBNIds
impl Sync for LinkISBNIds
impl Unpin for LinkISBNIds
impl UnwindSafe for LinkISBNIds
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