pub enum AddonResult {
Ok,
Data(Value),
Err,
}Expand description
Result of extension processing.
Variants§
Ok
Allow the request unchanged.
Data(Value)
Allow the request and attach additional data to the response.
Err
Do not permit the request.
Auto Trait Implementations§
impl Freeze for AddonResult
impl RefUnwindSafe for AddonResult
impl Send for AddonResult
impl Sync for AddonResult
impl Unpin for AddonResult
impl UnwindSafe for AddonResult
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