pub struct PolicyDecisionResponse {
pub request_id: Option<String>,
pub outcome: Option<PolicyEvaluationOutcome>,
pub deny_reason: Option<String>,
}Expand description
antigravity.localharness.PolicyDecisionResponse
Fields§
§request_id: Option<String>§outcome: Option<PolicyEvaluationOutcome>§deny_reason: Option<String>Trait Implementations§
Source§impl Clone for PolicyDecisionResponse
impl Clone for PolicyDecisionResponse
Source§fn clone(&self) -> PolicyDecisionResponse
fn clone(&self) -> PolicyDecisionResponse
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 PolicyDecisionResponse
impl Debug for PolicyDecisionResponse
Source§impl Default for PolicyDecisionResponse
impl Default for PolicyDecisionResponse
Source§fn default() -> PolicyDecisionResponse
fn default() -> PolicyDecisionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PolicyDecisionResponse
impl<'de> Deserialize<'de> for PolicyDecisionResponse
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 PolicyDecisionResponse
impl PartialEq for PolicyDecisionResponse
Source§impl Serialize for PolicyDecisionResponse
impl Serialize for PolicyDecisionResponse
impl StructuralPartialEq for PolicyDecisionResponse
Auto Trait Implementations§
impl Freeze for PolicyDecisionResponse
impl RefUnwindSafe for PolicyDecisionResponse
impl Send for PolicyDecisionResponse
impl Sync for PolicyDecisionResponse
impl Unpin for PolicyDecisionResponse
impl UnsafeUnpin for PolicyDecisionResponse
impl UnwindSafe for PolicyDecisionResponse
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