pub struct PendingApprovalRecord {
pub resume_token: ResumeToken,
pub created_at: SystemTime,
pub trigger_id: String,
pub step: usize,
pub reason: SuspendReason,
pub pending_calls: Vec<PlannedSkillCall>,
}Fields§
§resume_token: ResumeToken§created_at: SystemTime§trigger_id: String§step: usize§reason: SuspendReason§pending_calls: Vec<PlannedSkillCall>Trait Implementations§
Source§impl Clone for PendingApprovalRecord
impl Clone for PendingApprovalRecord
Source§fn clone(&self) -> PendingApprovalRecord
fn clone(&self) -> PendingApprovalRecord
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 PendingApprovalRecord
impl Debug for PendingApprovalRecord
Source§impl<'de> Deserialize<'de> for PendingApprovalRecord
impl<'de> Deserialize<'de> for PendingApprovalRecord
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PendingApprovalRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PendingApprovalRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PendingApprovalRecord
impl PartialEq for PendingApprovalRecord
Source§fn eq(&self, other: &PendingApprovalRecord) -> bool
fn eq(&self, other: &PendingApprovalRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PendingApprovalRecord
impl Serialize for PendingApprovalRecord
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PendingApprovalRecord
Auto Trait Implementations§
impl Freeze for PendingApprovalRecord
impl RefUnwindSafe for PendingApprovalRecord
impl Send for PendingApprovalRecord
impl Sync for PendingApprovalRecord
impl Unpin for PendingApprovalRecord
impl UnsafeUnpin for PendingApprovalRecord
impl UnwindSafe for PendingApprovalRecord
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