pub struct SessionSandboxGetEnforcementStatusResult {
pub blocked: bool,
pub reason: Option<String>,
pub required: bool,
}Expand description
Managed sandbox enforcement state for a session.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§blocked: boolWhether an enforcement failure has permanently blocked the session.
reason: Option<String>The first sandbox enforcement failure that blocked the session.
required: boolWhether the effective managed policy requires an available sandbox backend.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SessionSandboxGetEnforcementStatusResult
impl<'de> Deserialize<'de> for SessionSandboxGetEnforcementStatusResult
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
Auto Trait Implementations§
impl Freeze for SessionSandboxGetEnforcementStatusResult
impl RefUnwindSafe for SessionSandboxGetEnforcementStatusResult
impl Send for SessionSandboxGetEnforcementStatusResult
impl Sync for SessionSandboxGetEnforcementStatusResult
impl Unpin for SessionSandboxGetEnforcementStatusResult
impl UnsafeUnpin for SessionSandboxGetEnforcementStatusResult
impl UnwindSafe for SessionSandboxGetEnforcementStatusResult
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