pub struct CompiledPrefixOp {
pub pattern: PatternInfo,
pub precedence: u8,
pub mapping_idx: usize,
}Expand description
Compiled prefix operator
Fields§
§pattern: PatternInfoPattern information
precedence: u8Precedence level
mapping_idx: usizeIndex into prefix mapping function array
Trait Implementations§
Source§impl Clone for CompiledPrefixOp
impl Clone for CompiledPrefixOp
Source§fn clone(&self) -> CompiledPrefixOp
fn clone(&self) -> CompiledPrefixOp
Returns a duplicate of the value. Read more
1.0.0 · 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 CompiledPrefixOp
impl RefUnwindSafe for CompiledPrefixOp
impl Send for CompiledPrefixOp
impl Sync for CompiledPrefixOp
impl Unpin for CompiledPrefixOp
impl UnsafeUnpin for CompiledPrefixOp
impl UnwindSafe for CompiledPrefixOp
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