chore: Add 'static
lifetime to CaptchaFinder
trait
Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
parent
110a8728e1
commit
25f90ecfaf
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ pub use header_finder::*;
|
||||||
pub use query_finder::*;
|
pub use query_finder::*;
|
||||||
|
|
||||||
/// Trait to find the captcha token and answer from the request.
|
/// Trait to find the captcha token and answer from the request.
|
||||||
pub trait CaptchaFinder: Send + Sync {
|
pub trait CaptchaFinder: Send + Sync + 'static {
|
||||||
/// Find the captcha token from the request.
|
/// Find the captcha token from the request.
|
||||||
///
|
///
|
||||||
/// ### Returns
|
/// ### Returns
|
||||||
|
|
Loading…
Reference in a new issue