pub struct StaticSchemeError {
    pub filename: Option<String>,
    pub location: LexerInfo,
    pub proc_name: Option<String>,
    pub args: Option<Vec<StaticShm>>,
    pub msg: String,
}

Fields§

§filename: Option<String>§location: LexerInfo§proc_name: Option<String>§args: Option<Vec<StaticShm>>§msg: String

Implementations§

source§

impl StaticSchemeError

source

pub fn new( filename: Option<String>, location: &LexerInfo, proc_name: Option<&str>, args: Option<Vec<StaticShm>>, msg: String ) -> Self

source

pub fn new_ser_partial(err: SerializationErrorPartial) -> Self

source

pub fn new_lexer(err: LexerError) -> Self

source

pub fn concat_error_msg(&mut self, msg: String)

source

pub fn set_filename<F>(&mut self, filename: F)where F: AsRef<str>,

source

pub fn set_location(&mut self, location: &LexerInfo)

source

pub fn set_proc_name(&mut self, proc_name: &str)

Trait Implementations§

source§

impl Debug for StaticSchemeError

source§

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

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

impl Display for StaticSchemeError

source§

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

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

impl From<SerializationErrorPartial> for StaticSchemeError

source§

fn from(err: SerializationErrorPartial) -> StaticSchemeError

Converts to this type from the input type.
source§

impl From<StaticSchemeError> for SchemeError

source§

fn from(err: StaticSchemeError) -> SchemeError

Converts to this type from the input type.
source§

impl From<StaticSchemeError> for SerializationError

source§

fn from(err: StaticSchemeError) -> SerializationError

Converts to this type from the input type.

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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.

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.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.