pub struct JoinError<T: Debug> {
pub kind: JoinErrorKind,
pub parts: T,
}
Expand description
Represents an error when trying to join multiple pages objects into 1, while also containing the pages which were attempted to be joined.
Fields§
§kind: JoinErrorKind
Contains the specific error that occured when attempting the operation
parts: T
Contains the different pages that were trying to be joined
Trait Implementations§
Source§impl<T: Debug> Error for JoinError<T>
impl<T: Debug> Error for JoinError<T>
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()
Auto Trait Implementations§
impl<T> Freeze for JoinError<T>where
T: Freeze,
impl<T> !RefUnwindSafe for JoinError<T>
impl<T> Send for JoinError<T>where
T: Send,
impl<T> Sync for JoinError<T>where
T: Sync,
impl<T> Unpin for JoinError<T>where
T: Unpin,
impl<T> !UnwindSafe for JoinError<T>
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