pub struct IntentRecord {
pub kind: String,
pub intent_id: String,
pub fields: Vec<IntentField>,
}Expand description
An external intent record emitted by an action.
Fields§
§kind: String§intent_id: String§fields: Vec<IntentField>Trait Implementations§
Source§impl Clone for IntentRecord
impl Clone for IntentRecord
Source§fn clone(&self) -> IntentRecord
fn clone(&self) -> IntentRecord
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 IntentRecord
impl Debug for IntentRecord
Source§impl<'de> Deserialize<'de> for IntentRecord
impl<'de> Deserialize<'de> for IntentRecord
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 IntentRecord
impl PartialEq for IntentRecord
Source§fn eq(&self, other: &IntentRecord) -> bool
fn eq(&self, other: &IntentRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IntentRecord
impl Serialize for IntentRecord
impl StructuralPartialEq for IntentRecord
Auto Trait Implementations§
impl Freeze for IntentRecord
impl RefUnwindSafe for IntentRecord
impl Send for IntentRecord
impl Sync for IntentRecord
impl Unpin for IntentRecord
impl UnsafeUnpin for IntentRecord
impl UnwindSafe for IntentRecord
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