pub enum WatchOption {
Show 25 variants
Component(String),
Compression(Compression),
UserAgent(String),
Pagemangle(String),
Uversionmangle(String),
Dversionmangle(String),
Dirversionmangle(String),
Oversionmangle(String),
Downloadurlmangle(String),
Pgpsigurlmangle(String),
Filenamemangle(String),
VersionPolicy(VersionPolicy),
Searchmode(SearchMode),
Mode(Mode),
Pgpmode(PgpMode),
Gitexport(GitExport),
Gitmode(GitMode),
Pretty(Pretty),
Ctype(ComponentType),
Repacksuffix(String),
Unzipopt(String),
Decompress,
Bare,
Repack,
Script(String),
}Expand description
Watch file entry options
Variants§
Component(String)
Component name for multi-tarball packages
Compression(Compression)
Compression format
UserAgent(String)
User agent string
Pagemangle(String)
Page mangling rules
Uversionmangle(String)
Upstream version mangling rules
Dversionmangle(String)
Debian version mangling rules
Dirversionmangle(String)
Directory version mangling rules (for mode=git)
Oversionmangle(String)
Upstream version mangling rules (alternative name)
Downloadurlmangle(String)
Download URL mangling rules
Pgpsigurlmangle(String)
PGP signature URL mangling rules
Filenamemangle(String)
Filename mangling rules
VersionPolicy(VersionPolicy)
Version policy
Searchmode(SearchMode)
Search mode (html or plain)
Mode(Mode)
Download mode (lwp, git, svn)
Pgpmode(PgpMode)
PGP verification mode
Gitexport(GitExport)
Git export mode
Gitmode(GitMode)
Git clone mode
Pretty(Pretty)
Pretty format for git tags
Ctype(ComponentType)
Component type (perl, nodejs)
Repacksuffix(String)
Repackaging suffix
Unzipopt(String)
Unzipopt option (deprecated)
Decompress
Decompress option
Bare
Bare option (for git mode)
Repack
Repack option
Script(String)
Script to execute
Trait Implementations§
Source§impl Clone for WatchOption
impl Clone for WatchOption
Source§fn clone(&self) -> WatchOption
fn clone(&self) -> WatchOption
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WatchOption
impl Debug for WatchOption
Source§impl PartialEq for WatchOption
impl PartialEq for WatchOption
impl Eq for WatchOption
impl StructuralPartialEq for WatchOption
Auto Trait Implementations§
impl Freeze for WatchOption
impl RefUnwindSafe for WatchOption
impl Send for WatchOption
impl Sync for WatchOption
impl Unpin for WatchOption
impl UnwindSafe for WatchOption
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