pub struct PythonIdentifier {
pub id: usize,
pub start: Point,
pub end: Point,
pub field: String,
}Fields§
§id: usize§start: Point§end: Point§field: StringTrait Implementations§
Source§impl Clone for PythonIdentifier
impl Clone for PythonIdentifier
Source§fn clone(&self) -> PythonIdentifier
fn clone(&self) -> PythonIdentifier
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PythonIdentifier
impl Debug for PythonIdentifier
Source§impl Default for PythonIdentifier
impl Default for PythonIdentifier
Source§fn default() -> PythonIdentifier
fn default() -> PythonIdentifier
Returns the “default value” for a type. Read more
impl Eq for PythonIdentifier
Source§impl Ord for PythonIdentifier
impl Ord for PythonIdentifier
Source§fn cmp(&self, other: &PythonIdentifier) -> Ordering
fn cmp(&self, other: &PythonIdentifier) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PythonIdentifier
impl PartialEq for PythonIdentifier
Source§fn eq(&self, other: &PythonIdentifier) -> bool
fn eq(&self, other: &PythonIdentifier) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PythonIdentifier
impl PartialOrd for PythonIdentifier
impl StructuralPartialEq for PythonIdentifier
Auto Trait Implementations§
impl Freeze for PythonIdentifier
impl RefUnwindSafe for PythonIdentifier
impl Send for PythonIdentifier
impl Sync for PythonIdentifier
impl Unpin for PythonIdentifier
impl UnsafeUnpin for PythonIdentifier
impl UnwindSafe for PythonIdentifier
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