pub struct GuardianApprovalReview {
pub rationale: Option<String>,
pub risk_level: Option<GuardianRiskLevel>,
pub status: GuardianApprovalReviewStatus,
pub user_authorization: Option<GuardianUserAuthorization>,
}Fields§
§rationale: Option<String>§risk_level: Option<GuardianRiskLevel>§status: GuardianApprovalReviewStatusTrait Implementations§
Source§impl Clone for GuardianApprovalReview
impl Clone for GuardianApprovalReview
Source§fn clone(&self) -> GuardianApprovalReview
fn clone(&self) -> GuardianApprovalReview
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 GuardianApprovalReview
impl Debug for GuardianApprovalReview
Source§impl<'de> Deserialize<'de> for GuardianApprovalReview
impl<'de> Deserialize<'de> for GuardianApprovalReview
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 GuardianApprovalReview
impl PartialEq for GuardianApprovalReview
Source§fn eq(&self, other: &GuardianApprovalReview) -> bool
fn eq(&self, other: &GuardianApprovalReview) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GuardianApprovalReview
impl Serialize for GuardianApprovalReview
impl StructuralPartialEq for GuardianApprovalReview
Auto Trait Implementations§
impl Freeze for GuardianApprovalReview
impl RefUnwindSafe for GuardianApprovalReview
impl Send for GuardianApprovalReview
impl Sync for GuardianApprovalReview
impl Unpin for GuardianApprovalReview
impl UnsafeUnpin for GuardianApprovalReview
impl UnwindSafe for GuardianApprovalReview
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