pub enum InterfaceErrorKind {
Undefined,
MissingTypeName,
TypeDeclaration,
InterfaceField(InterfaceFieldErrorKind),
UnexpectedKeyword(String),
AbstractExtends,
}Variants§
Undefined
MissingTypeName
TypeDeclaration
InterfaceField(InterfaceFieldErrorKind)
UnexpectedKeyword(String)
AbstractExtends
Trait Implementations§
Source§impl Clone for InterfaceErrorKind
impl Clone for InterfaceErrorKind
Source§fn clone(&self) -> InterfaceErrorKind
fn clone(&self) -> InterfaceErrorKind
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 Debug for InterfaceErrorKind
impl Debug for InterfaceErrorKind
Auto Trait Implementations§
impl Freeze for InterfaceErrorKind
impl RefUnwindSafe for InterfaceErrorKind
impl Send for InterfaceErrorKind
impl Sync for InterfaceErrorKind
impl Unpin for InterfaceErrorKind
impl UnsafeUnpin for InterfaceErrorKind
impl UnwindSafe for InterfaceErrorKind
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