pub enum ParserContainmentKind {
LinuxLandlockSeccomp,
WindowsAppContainerJob,
}Expand description
Closed containment boundary admitted before the worker emits READY.
Variants§
LinuxLandlockSeccomp
Linux worker self-restriction through hard limits, Landlock, and seccomp.
WindowsAppContainerJob
Windows restricted AppContainer child attached to a kill-on-close Job Object.
Trait Implementations§
Source§impl Clone for ParserContainmentKind
impl Clone for ParserContainmentKind
Source§fn clone(&self) -> ParserContainmentKind
fn clone(&self) -> ParserContainmentKind
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 moreimpl Copy for ParserContainmentKind
Source§impl Debug for ParserContainmentKind
impl Debug for ParserContainmentKind
Source§impl<'de> Deserialize<'de> for ParserContainmentKind
impl<'de> Deserialize<'de> for ParserContainmentKind
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
impl Eq for ParserContainmentKind
Source§impl PartialEq for ParserContainmentKind
impl PartialEq for ParserContainmentKind
Source§fn eq(&self, other: &ParserContainmentKind) -> bool
fn eq(&self, other: &ParserContainmentKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ParserContainmentKind
impl Serialize for ParserContainmentKind
impl StructuralPartialEq for ParserContainmentKind
Auto Trait Implementations§
impl Freeze for ParserContainmentKind
impl RefUnwindSafe for ParserContainmentKind
impl Send for ParserContainmentKind
impl Sync for ParserContainmentKind
impl Unpin for ParserContainmentKind
impl UnsafeUnpin for ParserContainmentKind
impl UnwindSafe for ParserContainmentKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.