pub struct ParsedCondition {
pub operator: ParsedOperatorName,
pub key: String,
pub values: Vec<String>,
}Expand description
One parsed entry from a statement’s condition block: the operator, a key, and the policy-declared value list.
Fields§
§operator: ParsedOperatorName§key: String§values: Vec<String>Trait Implementations§
Source§impl Clone for ParsedCondition
impl Clone for ParsedCondition
Source§fn clone(&self) -> ParsedCondition
fn clone(&self) -> ParsedCondition
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 moreAuto Trait Implementations§
impl Freeze for ParsedCondition
impl RefUnwindSafe for ParsedCondition
impl Send for ParsedCondition
impl Sync for ParsedCondition
impl Unpin for ParsedCondition
impl UnsafeUnpin for ParsedCondition
impl UnwindSafe for ParsedCondition
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