pub struct FillArgs {
pub input: String,
pub fields: String,
pub context: Option<String>,
pub confidence_threshold: f32,
pub max_pages: Option<u32>,
pub page_range: Option<String>,
pub skip_cache: bool,
pub output: Option<PathBuf>,
pub timeout: u64,
}Fields§
§input: StringFile path or URL of form to fill
fields: StringJSON file or string mapping field names to values
context: Option<String>Additional context for field matching
confidence_threshold: f32Field matching strictness (0.0-1.0)
max_pages: Option<u32>Maximum pages to process
page_range: Option<String>Page range (e.g., “0-5,10”)
skip_cache: boolSkip local cache lookup
output: Option<PathBuf>Write filled form to file (binary output)
timeout: u64Request timeout in seconds
Trait Implementations§
Source§impl Args for FillArgs
impl Args for FillArgs
Source§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
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl FromArgMatches for FillArgs
impl FromArgMatches for FillArgs
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.Auto Trait Implementations§
impl Freeze for FillArgs
impl RefUnwindSafe for FillArgs
impl Send for FillArgs
impl Sync for FillArgs
impl Unpin for FillArgs
impl UnsafeUnpin for FillArgs
impl UnwindSafe for FillArgs
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