pub struct IdentifierOperation {
pub op: IdentifierOperationType,
pub span: Range<usize>,
}Expand description
Operation applied on an identifier.
Fields§
§op: IdentifierOperationTypeType of the operation
span: Range<usize>Span covering the operation
Trait Implementations§
Source§impl Clone for IdentifierOperation
impl Clone for IdentifierOperation
Source§fn clone(&self) -> IdentifierOperation
fn clone(&self) -> IdentifierOperation
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 moreSource§impl Debug for IdentifierOperation
impl Debug for IdentifierOperation
Source§impl PartialEq for IdentifierOperation
impl PartialEq for IdentifierOperation
impl StructuralPartialEq for IdentifierOperation
Auto Trait Implementations§
impl Freeze for IdentifierOperation
impl RefUnwindSafe for IdentifierOperation
impl Send for IdentifierOperation
impl Sync for IdentifierOperation
impl Unpin for IdentifierOperation
impl UnwindSafe for IdentifierOperation
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