pub enum HttpReceiverEventSignal {
OnConnection(String, String),
OnRequest(String, HttpRequest),
OnResponse(String, HttpResponse),
OnError(String, String),
}
Variants§
OnConnection(String, String)
OnRequest(String, HttpRequest)
OnResponse(String, HttpResponse)
OnError(String, String)
Trait Implementations§
Source§impl Clone for HttpReceiverEventSignal
impl Clone for HttpReceiverEventSignal
Source§fn clone(&self) -> HttpReceiverEventSignal
fn clone(&self) -> HttpReceiverEventSignal
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 moreAuto Trait Implementations§
impl Freeze for HttpReceiverEventSignal
impl RefUnwindSafe for HttpReceiverEventSignal
impl Send for HttpReceiverEventSignal
impl Sync for HttpReceiverEventSignal
impl Unpin for HttpReceiverEventSignal
impl UnwindSafe for HttpReceiverEventSignal
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