pub struct ProtectionPlanDecision {
pub allow: bool,
pub required_scopes: Vec<String>,
pub handling_mode: String,
pub plaintext_transport: String,
}Fields§
§allow: bool§required_scopes: Vec<String>§handling_mode: String§plaintext_transport: StringTrait Implementations§
Source§impl Clone for ProtectionPlanDecision
impl Clone for ProtectionPlanDecision
Source§fn clone(&self) -> ProtectionPlanDecision
fn clone(&self) -> ProtectionPlanDecision
Returns a duplicate of the value. Read more
1.0.0 · 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 ProtectionPlanDecision
impl Debug for ProtectionPlanDecision
Source§impl<'de> Deserialize<'de> for ProtectionPlanDecision
impl<'de> Deserialize<'de> for ProtectionPlanDecision
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 ProtectionPlanDecision
impl PartialEq for ProtectionPlanDecision
Source§impl Serialize for ProtectionPlanDecision
impl Serialize for ProtectionPlanDecision
impl Eq for ProtectionPlanDecision
impl StructuralPartialEq for ProtectionPlanDecision
Auto Trait Implementations§
impl Freeze for ProtectionPlanDecision
impl RefUnwindSafe for ProtectionPlanDecision
impl Send for ProtectionPlanDecision
impl Sync for ProtectionPlanDecision
impl Unpin for ProtectionPlanDecision
impl UnsafeUnpin for ProtectionPlanDecision
impl UnwindSafe for ProtectionPlanDecision
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