#[non_exhaustive]pub struct MultilineListBuilderError<E: Error + Clone + Send + Sync> { /* private fields */ }
Expand description
Error from trying to parse a MultilineListBuilder as a list of particular items
Usually, this error is generated during deserialization.
Trait Implementations§
source§impl<E: Clone + Error + Clone + Send + Sync> Clone for MultilineListBuilderError<E>
impl<E: Clone + Error + Clone + Send + Sync> Clone for MultilineListBuilderError<E>
source§fn clone(&self) -> MultilineListBuilderError<E>
fn clone(&self) -> MultilineListBuilderError<E>
Returns a copy 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<E> Display for MultilineListBuilderError<E>where
E: Display + Error + Clone + Send + Sync,
impl<E> Display for MultilineListBuilderError<E>where E: Display + Error + Clone + Send + Sync,
source§impl<E: Error + Clone + Send + Sync> Error for MultilineListBuilderError<E>where
Self: Debug + Display,
impl<E: Error + Clone + Send + Sync> Error for MultilineListBuilderError<E>where Self: Debug + Display,
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<E> RefUnwindSafe for MultilineListBuilderError<E>where E: RefUnwindSafe,
impl<E> Send for MultilineListBuilderError<E>
impl<E> Sync for MultilineListBuilderError<E>
impl<E> Unpin for MultilineListBuilderError<E>where E: Unpin,
impl<E> UnwindSafe for MultilineListBuilderError<E>where E: 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