pub struct PythonExceptionGroup {
pub message: String,
pub exceptions: Vec<PythonException>,
}Expand description
A non-empty nested Python exception group.
Fields§
§message: StringGroup message.
exceptions: Vec<PythonException>Direct exceptions in stable order.
Implementations§
Trait Implementations§
Source§impl Clone for PythonExceptionGroup
impl Clone for PythonExceptionGroup
Source§fn clone(&self) -> PythonExceptionGroup
fn clone(&self) -> PythonExceptionGroup
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 PythonExceptionGroup
impl Debug for PythonExceptionGroup
impl Eq for PythonExceptionGroup
Source§impl PartialEq for PythonExceptionGroup
impl PartialEq for PythonExceptionGroup
impl StructuralPartialEq for PythonExceptionGroup
Auto Trait Implementations§
impl Freeze for PythonExceptionGroup
impl RefUnwindSafe for PythonExceptionGroup
impl Send for PythonExceptionGroup
impl Sync for PythonExceptionGroup
impl Unpin for PythonExceptionGroup
impl UnsafeUnpin for PythonExceptionGroup
impl UnwindSafe for PythonExceptionGroup
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.