pub struct InteractionAnswerRequest {
pub request_id: String,
pub batch_id: String,
pub decisions: Vec<InteractionDecision>,
pub occurred_at_unix_ms: i64,
}Expand description
Answers the current pending interaction without requiring thread or policy state.
Fields§
§request_id: String§batch_id: String§decisions: Vec<InteractionDecision>§occurred_at_unix_ms: i64Trait Implementations§
Source§impl Clone for InteractionAnswerRequest
impl Clone for InteractionAnswerRequest
Source§fn clone(&self) -> InteractionAnswerRequest
fn clone(&self) -> InteractionAnswerRequest
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 InteractionAnswerRequest
impl Debug for InteractionAnswerRequest
Source§impl<'de> Deserialize<'de> for InteractionAnswerRequest
impl<'de> Deserialize<'de> for InteractionAnswerRequest
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
impl Eq for InteractionAnswerRequest
Source§impl PartialEq for InteractionAnswerRequest
impl PartialEq for InteractionAnswerRequest
Source§impl Serialize for InteractionAnswerRequest
impl Serialize for InteractionAnswerRequest
impl StructuralPartialEq for InteractionAnswerRequest
Auto Trait Implementations§
impl Freeze for InteractionAnswerRequest
impl RefUnwindSafe for InteractionAnswerRequest
impl Send for InteractionAnswerRequest
impl Sync for InteractionAnswerRequest
impl Unpin for InteractionAnswerRequest
impl UnsafeUnpin for InteractionAnswerRequest
impl UnwindSafe for InteractionAnswerRequest
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