pub struct InterceptionResponse {
pub actions: Vec<RequestedActionRecord>,
pub continuation: InterceptorContinuation,
}Fields§
§actions: Vec<RequestedActionRecord>§continuation: InterceptorContinuationImplementations§
Source§impl InterceptionResponse
impl InterceptionResponse
pub fn has_actions(&self) -> bool
pub fn should_reinvoke(&self) -> bool
pub fn should_stop(&self) -> bool
Trait Implementations§
Source§impl Clone for InterceptionResponse
impl Clone for InterceptionResponse
Source§fn clone(&self) -> InterceptionResponse
fn clone(&self) -> InterceptionResponse
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 InterceptionResponse
impl Debug for InterceptionResponse
Source§impl<'de> Deserialize<'de> for InterceptionResponse
impl<'de> Deserialize<'de> for InterceptionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for InterceptionResponse
impl PartialEq for InterceptionResponse
Source§fn eq(&self, other: &InterceptionResponse) -> bool
fn eq(&self, other: &InterceptionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InterceptionResponse
impl Serialize for InterceptionResponse
impl StructuralPartialEq for InterceptionResponse
Auto Trait Implementations§
impl Freeze for InterceptionResponse
impl RefUnwindSafe for InterceptionResponse
impl Send for InterceptionResponse
impl Sync for InterceptionResponse
impl Unpin for InterceptionResponse
impl UnsafeUnpin for InterceptionResponse
impl UnwindSafe for InterceptionResponse
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