pub struct ItemGuardianApprovalReviewCompletedNotification {
pub action: GuardianApprovalReviewAction,
pub completed_at_ms: i64,
pub decision_source: AutoReviewDecisionSource,
pub review: GuardianApprovalReview,
pub review_id: String,
pub started_at_ms: i64,
pub target_item_id: Option<String>,
pub thread_id: String,
pub turn_id: String,
}Fields§
§action: GuardianApprovalReviewAction§completed_at_ms: i64§decision_source: AutoReviewDecisionSource§review: GuardianApprovalReview§review_id: String§started_at_ms: i64§target_item_id: Option<String>§thread_id: String§turn_id: StringTrait Implementations§
Source§impl Clone for ItemGuardianApprovalReviewCompletedNotification
impl Clone for ItemGuardianApprovalReviewCompletedNotification
Source§fn clone(&self) -> ItemGuardianApprovalReviewCompletedNotification
fn clone(&self) -> ItemGuardianApprovalReviewCompletedNotification
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<'de> Deserialize<'de> for ItemGuardianApprovalReviewCompletedNotification
impl<'de> Deserialize<'de> for ItemGuardianApprovalReviewCompletedNotification
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 ItemGuardianApprovalReviewCompletedNotification
impl PartialEq for ItemGuardianApprovalReviewCompletedNotification
Source§fn eq(&self, other: &ItemGuardianApprovalReviewCompletedNotification) -> bool
fn eq(&self, other: &ItemGuardianApprovalReviewCompletedNotification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ItemGuardianApprovalReviewCompletedNotification
Auto Trait Implementations§
impl Freeze for ItemGuardianApprovalReviewCompletedNotification
impl RefUnwindSafe for ItemGuardianApprovalReviewCompletedNotification
impl Send for ItemGuardianApprovalReviewCompletedNotification
impl Sync for ItemGuardianApprovalReviewCompletedNotification
impl Unpin for ItemGuardianApprovalReviewCompletedNotification
impl UnsafeUnpin for ItemGuardianApprovalReviewCompletedNotification
impl UnwindSafe for ItemGuardianApprovalReviewCompletedNotification
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