pub struct IndexNames {
marc_authorities: Option<PathBuf>,
outfile: PathBuf,
}
Expand description
Clean and index author names from authority records.
Fields§
MARC authority field file to scan for names.
outfile: PathBuf
Index output Parquet file.
Trait Implementations§
Source§impl Args for IndexNames
impl Args for IndexNames
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§impl Debug for IndexNames
impl Debug for IndexNames
Source§impl From<IndexNames> for RootCommand
impl From<IndexNames> for RootCommand
Source§fn from(v: IndexNames) -> RootCommand
fn from(v: IndexNames) -> RootCommand
Converts to this type from the input type.
Source§impl FromArgMatches for IndexNames
impl FromArgMatches for IndexNames
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<IndexNames> for RootCommand
impl TryInto<IndexNames> for RootCommand
Auto Trait Implementations§
impl Freeze for IndexNames
impl RefUnwindSafe for IndexNames
impl Send for IndexNames
impl Sync for IndexNames
impl Unpin for IndexNames
impl UnwindSafe for IndexNames
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