pub struct HttpTrigger { /* private fields */ }Expand description
A trigger that runs on an HTTP request.
This could be used to trigger checks from git remotes (e.g. GitHub, GitLab) with webhooks. Given that your server can be reached from the outside, you can pass your server’s hostname or IP address and have actions running on git changes immediately.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HttpTrigger
impl RefUnwindSafe for HttpTrigger
impl Send for HttpTrigger
impl Sync for HttpTrigger
impl Unpin for HttpTrigger
impl UnwindSafe for HttpTrigger
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