pub struct TypeParserError {
pub severity: TypeParserErrorSeverity,
pub message: String,
pub file_name: String,
pub line: u64,
pub column: u64,
}
Fields§
§severity: TypeParserErrorSeverity
§message: String
§file_name: String
§line: u64
§column: u64
Implementations§
Trait Implementations§
source§impl Clone for TypeParserError
impl Clone for TypeParserError
source§fn clone(&self) -> TypeParserError
fn clone(&self) -> TypeParserError
Returns a copy 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 CoreArrayProvider for TypeParserError
impl CoreArrayProvider for TypeParserError
source§impl Debug for TypeParserError
impl Debug for TypeParserError
source§impl PartialEq for TypeParserError
impl PartialEq for TypeParserError
impl Eq for TypeParserError
impl StructuralPartialEq for TypeParserError
Auto Trait Implementations§
impl Freeze for TypeParserError
impl RefUnwindSafe for TypeParserError
impl Send for TypeParserError
impl Sync for TypeParserError
impl Unpin for TypeParserError
impl UnwindSafe for TypeParserError
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