pub enum PluginDatabaseBeforeAction {
Continue(PluginDatabaseBeforeInput),
Cancel(OpenAuthError),
}Expand description
Action returned by a before hook.
Variants§
Continue(PluginDatabaseBeforeInput)
Cancel(OpenAuthError)
Trait Implementations§
Source§impl Debug for PluginDatabaseBeforeAction
impl Debug for PluginDatabaseBeforeAction
Source§impl PartialEq for PluginDatabaseBeforeAction
impl PartialEq for PluginDatabaseBeforeAction
Source§fn eq(&self, other: &PluginDatabaseBeforeAction) -> bool
fn eq(&self, other: &PluginDatabaseBeforeAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PluginDatabaseBeforeAction
Auto Trait Implementations§
impl Freeze for PluginDatabaseBeforeAction
impl RefUnwindSafe for PluginDatabaseBeforeAction
impl Send for PluginDatabaseBeforeAction
impl Sync for PluginDatabaseBeforeAction
impl Unpin for PluginDatabaseBeforeAction
impl UnsafeUnpin for PluginDatabaseBeforeAction
impl UnwindSafe for PluginDatabaseBeforeAction
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