pub struct PdpResponse {
pub decision: Box<GovernanceDecision>,
}Expand description
PdpResponse : Response from the Policy Decision Point
Fields§
§decision: Box<GovernanceDecision>Implementations§
Source§impl PdpResponse
impl PdpResponse
Sourcepub fn new(decision: GovernanceDecision) -> PdpResponse
pub fn new(decision: GovernanceDecision) -> PdpResponse
Response from the Policy Decision Point
Trait Implementations§
Source§impl Clone for PdpResponse
impl Clone for PdpResponse
Source§fn clone(&self) -> PdpResponse
fn clone(&self) -> PdpResponse
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 PdpResponse
impl Debug for PdpResponse
Source§impl Default for PdpResponse
impl Default for PdpResponse
Source§fn default() -> PdpResponse
fn default() -> PdpResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PdpResponse
impl<'de> Deserialize<'de> for PdpResponse
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 PdpResponse
impl PartialEq for PdpResponse
Source§fn eq(&self, other: &PdpResponse) -> bool
fn eq(&self, other: &PdpResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PdpResponse
impl Serialize for PdpResponse
impl StructuralPartialEq for PdpResponse
Auto Trait Implementations§
impl Freeze for PdpResponse
impl RefUnwindSafe for PdpResponse
impl Send for PdpResponse
impl Sync for PdpResponse
impl Unpin for PdpResponse
impl UnsafeUnpin for PdpResponse
impl UnwindSafe for PdpResponse
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