pub enum ProcessOwnershipClass {
AgentOwned,
HostManaged,
DetachedByIntent,
}Expand description
Enumerates the finite process ownership class cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
AgentOwned
Use this variant when the contract needs to represent agent owned; selecting it has no side effect by itself.
HostManaged
Use this variant when the contract needs to represent host managed; selecting it has no side effect by itself.
DetachedByIntent
Use this variant when the contract needs to represent detached by intent; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for ProcessOwnershipClass
impl Clone for ProcessOwnershipClass
Source§fn clone(&self) -> ProcessOwnershipClass
fn clone(&self) -> ProcessOwnershipClass
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 ProcessOwnershipClass
impl Debug for ProcessOwnershipClass
Source§impl<'de> Deserialize<'de> for ProcessOwnershipClass
impl<'de> Deserialize<'de> for ProcessOwnershipClass
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 ProcessOwnershipClass
Source§impl PartialEq for ProcessOwnershipClass
impl PartialEq for ProcessOwnershipClass
Source§fn eq(&self, other: &ProcessOwnershipClass) -> bool
fn eq(&self, other: &ProcessOwnershipClass) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessOwnershipClass
impl Serialize for ProcessOwnershipClass
impl StructuralPartialEq for ProcessOwnershipClass
Auto Trait Implementations§
impl Freeze for ProcessOwnershipClass
impl RefUnwindSafe for ProcessOwnershipClass
impl Send for ProcessOwnershipClass
impl Sync for ProcessOwnershipClass
impl Unpin for ProcessOwnershipClass
impl UnsafeUnpin for ProcessOwnershipClass
impl UnwindSafe for ProcessOwnershipClass
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