pub enum OperatorBody {
Conjunction(ConjunctionBody),
Delegation(DelegationBody),
Aggregation(AggregationBody),
Restriction(RestrictionBody),
Revocation(RevocationBody),
}Expand description
Operator-specific record body.
Variants§
Conjunction(ConjunctionBody)
§6.1 conjunction body.
Delegation(DelegationBody)
§6.2 delegation body.
Aggregation(AggregationBody)
§6.3 aggregation body.
Restriction(RestrictionBody)
§6.4 restriction body.
Revocation(RevocationBody)
§6.5 revocation body.
Trait Implementations§
Source§impl Clone for OperatorBody
impl Clone for OperatorBody
Source§fn clone(&self) -> OperatorBody
fn clone(&self) -> OperatorBody
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 OperatorBody
impl Debug for OperatorBody
Source§impl<'de> Deserialize<'de> for OperatorBody
impl<'de> Deserialize<'de> for OperatorBody
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 OperatorBody
impl PartialEq for OperatorBody
Source§fn eq(&self, other: &OperatorBody) -> bool
fn eq(&self, other: &OperatorBody) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OperatorBody
impl Serialize for OperatorBody
impl Eq for OperatorBody
impl StructuralPartialEq for OperatorBody
Auto Trait Implementations§
impl Freeze for OperatorBody
impl RefUnwindSafe for OperatorBody
impl Send for OperatorBody
impl Sync for OperatorBody
impl Unpin for OperatorBody
impl UnsafeUnpin for OperatorBody
impl UnwindSafe for OperatorBody
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