pub enum InvalidItem {
RuntimeValue(Value),
Type(TypeHint),
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for InvalidItem
impl Clone for InvalidItem
Source§fn clone(&self) -> InvalidItem
fn clone(&self) -> InvalidItem
Returns a duplicate 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 Debug for InvalidItem
impl Debug for InvalidItem
Source§impl PartialEq for InvalidItem
impl PartialEq for InvalidItem
impl StructuralPartialEq for InvalidItem
Auto Trait Implementations§
impl Freeze for InvalidItem
impl RefUnwindSafe for InvalidItem
impl Send for InvalidItem
impl Sync for InvalidItem
impl Unpin for InvalidItem
impl UnsafeUnpin for InvalidItem
impl UnwindSafe for InvalidItem
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