Enum pdbtbx::Context

source ·
pub enum Context {
    None,
    Show {
        line: String,
    },
    FullLine {
        linenumber: usize,
        line: String,
    },
    Line {
        linenumber: usize,
        line: String,
        offset: usize,
        length: usize,
    },
    Range {
        start_linenumber: usize,
        lines: Vec<String>,
        offset: usize,
    },
    RangeHighlights {
        start_linenumber: usize,
        lines: Vec<String>,
        highlights: Vec<(usize, usize, usize)>,
    },
    Multiple {
        contexts: Vec<(Option<String>, Context)>,
    },
}
Expand description

A struct to define the context of an error message

Variants§

§

None

When no context can be given

§

Show

Fields

§line: String

The line to be shown to the user (e.g. filename)

When only a line (e.g. in a file) can be shown

§

FullLine

Fields

§linenumber: usize

The line number to recognise where the error is located

§line: String

The line to show the issue itself

When a full line is faulty and no special position can be annotated

§

Line

Fields

§linenumber: usize

The line number to recognise where the error is located.

§line: String

The line to show the issue itself.

§offset: usize

The offset of the special position to be annotated.

§length: usize

The length of the special position to be annotated.

When a special position can be annotated on a line.

     |
104  | ATOM      O  N   MET A   1      27.251  24.447   2.594  1.00 11.79           N
     |        ^^^^
       <-   -><-->

The first space (annotated by <-, ->) is the offset, in this case 7. The second space is the length, in this case 4.

§

Range

Fields

§start_linenumber: usize

The linenumber of the first line

§lines: Vec<String>

The lines to show

§offset: usize

The possible offset of the first line, will be padded with spaces

To show multiple lines where an error occurred.

§

RangeHighlights

Fields

§start_linenumber: usize

The linenumber of the first line

§lines: Vec<String>

The lines to show

§highlights: Vec<(usize, usize, usize)>

Highlights defined by the line (relative to the set of lines given), start column in that line and length of highlight

To show multiple lines where an error occurred.

§

Multiple

Fields

§contexts: Vec<(Option<String>, Context)>

The contexts to show

To show multiple contexts

Implementations§

source§

impl Context

source

pub const fn none() -> Context

Creates a new context when no context can be given

source

pub fn show(line: impl ToString) -> Context

Creates a new context when only a line (eg filename) can be shown

source

pub fn full_line(linenumber: usize, line: impl ToString) -> Context

Creates a new context when a full line is faulty and no special position can be annotated

source

pub fn line( linenumber: usize, line: impl ToString, offset: usize, length: usize ) -> Context

Creates a new context when a special position can be annotated on a line

source

pub fn position(pos: &Position<'_>) -> Context

Creates a new context to highlight a certain position

source

pub fn range(start: &Position<'_>, end: &Position<'_>) -> Context

Creates a new context from a start and end point within a single file

Trait Implementations§

source§

impl Clone for Context

source§

fn clone(&self) -> Context

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Context

source§

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

Formats the value using the given formatter. Read more
source§

impl Display for Context

source§

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

Formats the value using the given formatter. Read more
source§

impl PartialEq<Context> for Context

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Context

source§

impl StructuralEq for Context

source§

impl StructuralPartialEq for Context

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

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

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.