pub enum BanSource {
Operator,
Agent,
}Expand description
Whether a suspension is at the operator level (cascades to all agents
under the operator) or the agent level (affects only one specific
agent). Serialized as lowercase — "operator" or "agent".
Variants§
Trait Implementations§
impl Copy for BanSource
Source§impl<'de> Deserialize<'de> for BanSource
impl<'de> Deserialize<'de> for BanSource
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 BanSource
impl StructuralPartialEq for BanSource
Auto Trait Implementations§
impl Freeze for BanSource
impl RefUnwindSafe for BanSource
impl Send for BanSource
impl Sync for BanSource
impl Unpin for BanSource
impl UnsafeUnpin for BanSource
impl UnwindSafe for BanSource
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