pub struct ErrorQueue {
sender: Sender<FormatError>,
receiver: Rc<Receiver<FormatError>>,
}
Fields§
§sender: Sender<FormatError>
§receiver: Rc<Receiver<FormatError>>
Implementations§
Trait Implementations§
Source§impl Clone for ErrorQueue
impl Clone for ErrorQueue
Source§fn clone(&self) -> ErrorQueue
fn clone(&self) -> ErrorQueue
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 Debug for ErrorQueue
impl Debug for ErrorQueue
Source§impl Default for ErrorQueue
impl Default for ErrorQueue
Source§impl Display for ErrorQueue
impl Display for ErrorQueue
Source§impl ErrorAccumulator for ErrorQueue
impl ErrorAccumulator for ErrorQueue
fn push(&self, e: FormatError)
Source§impl From<ErrorQueue> for Vec<FormatError>
impl From<ErrorQueue> for Vec<FormatError>
Source§fn from(v: ErrorQueue) -> Vec<FormatError>
fn from(v: ErrorQueue) -> Vec<FormatError>
Converts to this type from the input type.
Source§impl<'e> IntoIterator for &'e ErrorQueue
impl<'e> IntoIterator for &'e ErrorQueue
Auto Trait Implementations§
impl Freeze for ErrorQueue
impl RefUnwindSafe for ErrorQueue
impl !Send for ErrorQueue
impl !Sync for ErrorQueue
impl Unpin for ErrorQueue
impl UnwindSafe for ErrorQueue
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