pub struct LineColumn {
pub line: usize,
pub column: usize,
}🔬 This is a nightly-only experimental API. (
proc_macro_span #54725)
Expand description
A line-column pair representing the start or end of a Span.
🔬 This is a nightly-only experimental API. (
proc_macro_span #54725)
The 1-indexed line in the source file on which the span starts or ends (inclusive).
column: usize🔬 This is a nightly-only experimental API. (
proc_macro_span #54725)
The 0-indexed column (in UTF-8 characters) in the source file on which
the span starts or ends (inclusive).
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
#[must_use]
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
#[must_use]
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
#[must_use]
fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
Restrict a value to a certain interval. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
This method tests greater than or equal to (for self and other) and is used by the >=
operator. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into #41263)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.