pub struct InternalError { /* private fields */ }Implementations§
Source§impl InternalError
impl InternalError
pub fn operator_eq(&self, rhs: &InternalError) -> bool
Trait Implementations§
Source§impl Clone for InternalError
impl Clone for InternalError
Source§fn clone(&self) -> InternalError
fn clone(&self) -> InternalError
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 CopyError for InternalError
impl CopyError for InternalError
fn copy_error_impl( &mut self, _dest_arena: &mut TypeArena, _clone_state: &mut CloneState, )
Source§impl Debug for InternalError
impl Debug for InternalError
impl Eq for InternalError
Source§impl ErrorToString for InternalError
impl ErrorToString for InternalError
fn error_to_string_impl(&self, stream: &mut dyn Write) -> Result
Source§impl From<InternalError> for TypeErrorData
impl From<InternalError> for TypeErrorData
Source§fn from(value: InternalError) -> Self
fn from(value: InternalError) -> Self
Converts to this type from the input type.
Source§impl Hash for InternalError
impl Hash for InternalError
Source§impl PartialEq for InternalError
impl PartialEq for InternalError
Source§fn eq(&self, other: &InternalError) -> bool
fn eq(&self, other: &InternalError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InternalError
Source§impl TypeErrorDataMember for InternalError
impl TypeErrorDataMember for InternalError
fn get_if(v: &TypeErrorData) -> Option<&Self>
fn get_if_mut(v: &mut TypeErrorData) -> Option<&mut Self>
Auto Trait Implementations§
impl Freeze for InternalError
impl RefUnwindSafe for InternalError
impl Send for InternalError
impl Sync for InternalError
impl Unpin for InternalError
impl UnsafeUnpin for InternalError
impl UnwindSafe for InternalError
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