pub enum PythonExceptionRelation {
Cause,
Context,
GroupMember(usize),
}Expand description
Python-owned meaning of one managed exception edge.
Variants§
Cause
Explicit raise ... from ... relation.
Context
Implicit active-exception relation.
GroupMember(usize)
Ordered direct member of an exception group.
Trait Implementations§
Source§impl Clone for PythonExceptionRelation
impl Clone for PythonExceptionRelation
Source§fn clone(&self) -> PythonExceptionRelation
fn clone(&self) -> PythonExceptionRelation
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 moreimpl Copy for PythonExceptionRelation
Source§impl Debug for PythonExceptionRelation
impl Debug for PythonExceptionRelation
impl Eq for PythonExceptionRelation
Source§impl PartialEq for PythonExceptionRelation
impl PartialEq for PythonExceptionRelation
impl StructuralPartialEq for PythonExceptionRelation
Auto Trait Implementations§
impl Freeze for PythonExceptionRelation
impl RefUnwindSafe for PythonExceptionRelation
impl Send for PythonExceptionRelation
impl Sync for PythonExceptionRelation
impl Unpin for PythonExceptionRelation
impl UnsafeUnpin for PythonExceptionRelation
impl UnwindSafe for PythonExceptionRelation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.