pub enum CallInterception {
PassThrough,
Handled(CallContinuation),
}Variants§
PassThrough
Handled(CallContinuation)
Trait Implementations§
Source§impl Clone for CallInterception
impl Clone for CallInterception
Source§fn clone(&self) -> CallInterception
fn clone(&self) -> CallInterception
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 moreSource§impl Debug for CallInterception
impl Debug for CallInterception
impl Eq for CallInterception
Source§impl PartialEq for CallInterception
impl PartialEq for CallInterception
impl StructuralPartialEq for CallInterception
Auto Trait Implementations§
impl Freeze for CallInterception
impl RefUnwindSafe for CallInterception
impl Send for CallInterception
impl Sync for CallInterception
impl Unpin for CallInterception
impl UnsafeUnpin for CallInterception
impl UnwindSafe for CallInterception
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