pub enum RuleKind<'a> {
Map {
from: &'a Field,
to: &'a Property,
op: RuleOp,
},
Function {
name: String,
to: Vec<&'a Property>,
},
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RuleKind<'a>
impl<'a> RefUnwindSafe for RuleKind<'a>
impl<'a> Send for RuleKind<'a>
impl<'a> Sync for RuleKind<'a>
impl<'a> Unpin for RuleKind<'a>
impl<'a> UnwindSafe for RuleKind<'a>
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