pub enum EntityListError<I: IPolicyPtrID> {
EmptyList,
ListBroken,
NodeIsSentinel,
RepeatedNode,
RepeatedList,
SelfNotAttached(I),
ItemFalselyAttached(I),
ItemFalselyDetached(I),
}Variants§
EmptyList
ListBroken
NodeIsSentinel
RepeatedNode
RepeatedList
SelfNotAttached(I)
ItemFalselyAttached(I)
ItemFalselyDetached(I)
Trait Implementations§
Source§impl<I: Clone + IPolicyPtrID> Clone for EntityListError<I>
impl<I: Clone + IPolicyPtrID> Clone for EntityListError<I>
Source§fn clone(&self) -> EntityListError<I>
fn clone(&self) -> EntityListError<I>
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<I: Debug + IPolicyPtrID> Debug for EntityListError<I>
impl<I: Debug + IPolicyPtrID> Debug for EntityListError<I>
Source§impl<I: IPolicyPtrID> Display for EntityListError<I>
impl<I: IPolicyPtrID> Display for EntityListError<I>
Source§impl<I: IPolicyPtrID> Error for EntityListError<I>
impl<I: IPolicyPtrID> Error for EntityListError<I>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl<I: PartialEq + IPolicyPtrID> PartialEq for EntityListError<I>
impl<I: PartialEq + IPolicyPtrID> PartialEq for EntityListError<I>
impl<I: Copy + IPolicyPtrID> Copy for EntityListError<I>
impl<I: Eq + IPolicyPtrID> Eq for EntityListError<I>
impl<I: IPolicyPtrID> StructuralPartialEq for EntityListError<I>
Auto Trait Implementations§
impl<I> Freeze for EntityListError<I>where
I: Freeze,
impl<I> RefUnwindSafe for EntityListError<I>where
I: RefUnwindSafe,
impl<I> Send for EntityListError<I>where
I: Send,
impl<I> Sync for EntityListError<I>where
I: Sync,
impl<I> Unpin for EntityListError<I>where
I: Unpin,
impl<I> UnwindSafe for EntityListError<I>where
I: UnwindSafe,
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