pub enum FrontendHandling {
Forward,
Local,
}Expand description
Whether an accepted frontend operation is locally handled or forwarded.
Variants§
Forward
Send the returned message to the upstream connection.
Local
Do not send the request upstream; application code will synthesize its response.
Trait Implementations§
Source§impl Clone for FrontendHandling
impl Clone for FrontendHandling
Source§fn clone(&self) -> FrontendHandling
fn clone(&self) -> FrontendHandling
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FrontendHandling
Source§impl Debug for FrontendHandling
impl Debug for FrontendHandling
impl Eq for FrontendHandling
Source§impl PartialEq for FrontendHandling
impl PartialEq for FrontendHandling
impl StructuralPartialEq for FrontendHandling
Auto Trait Implementations§
impl Freeze for FrontendHandling
impl RefUnwindSafe for FrontendHandling
impl Send for FrontendHandling
impl Sync for FrontendHandling
impl Unpin for FrontendHandling
impl UnsafeUnpin for FrontendHandling
impl UnwindSafe for FrontendHandling
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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