Struct ClassSetBinaryOp

struct ClassSetBinaryOp { ... }

A Unicode character class set operation.

Fields

span: Span

The span of this operation. e.g., the a-z--[h-p] in [a-z--h-p].

kind: ClassSetBinaryOpKind

The type of this set operation.

lhs: Box<ClassSet>

The left hand side of the operation.

rhs: Box<ClassSet>

The right hand side of the operation.

Implementations

impl Clone for ClassSetBinaryOp

fn clone(self: &Self) -> ClassSetBinaryOp

impl Debug for ClassSetBinaryOp

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl Eq for ClassSetBinaryOp

impl Freeze for ClassSetBinaryOp

impl PartialEq for ClassSetBinaryOp

fn eq(self: &Self, other: &ClassSetBinaryOp) -> bool

impl RefUnwindSafe for ClassSetBinaryOp

impl Send for ClassSetBinaryOp

impl StructuralPartialEq for ClassSetBinaryOp

impl Sync for ClassSetBinaryOp

impl Unpin for ClassSetBinaryOp

impl UnsafeUnpin for ClassSetBinaryOp

impl UnwindSafe for ClassSetBinaryOp

impl<T> Any for ClassSetBinaryOp

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for ClassSetBinaryOp

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for ClassSetBinaryOp

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for ClassSetBinaryOp

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for ClassSetBinaryOp

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for ClassSetBinaryOp

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, U> Into for ClassSetBinaryOp

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for ClassSetBinaryOp

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for ClassSetBinaryOp

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>