Struct cedar_policy_core::parser::cst::Mult
source · pub struct Mult {
pub initial: Node<Option<Unary>>,
pub extended: Vec<(MultOp, Node<Option<Unary>>)>,
}
Expand description
Multiplicative arithmetic
Fields§
§initial: Node<Option<Unary>>
a singleton is a wrapper for a higher-priority node
extended: Vec<(MultOp, Node<Option<Unary>>)>
additional elements represent a chained *
, /
, etc. computation
Trait Implementations§
source§impl PartialEq for Mult
impl PartialEq for Mult
impl Eq for Mult
impl StructuralPartialEq for Mult
Auto Trait Implementations§
impl Freeze for Mult
impl RefUnwindSafe for Mult
impl Send for Mult
impl Sync for Mult
impl Unpin for Mult
impl UnwindSafe for Mult
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