pub struct BatchResult<T> {
pub successes: BTreeMap<Ticker, T>,
pub missing: Vec<Ticker>,
pub failures: Vec<SymbolFailure>,
}Fields§
§successes: BTreeMap<Ticker, T>§missing: Vec<Ticker>§failures: Vec<SymbolFailure>Implementations§
Trait Implementations§
Source§impl<T: Clone> Clone for BatchResult<T>
impl<T: Clone> Clone for BatchResult<T>
Source§fn clone(&self) -> BatchResult<T>
fn clone(&self) -> BatchResult<T>
Returns a duplicate 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<T: Debug> Debug for BatchResult<T>
impl<T: Debug> Debug for BatchResult<T>
Source§impl<T> Default for BatchResult<T>
impl<T> Default for BatchResult<T>
Source§impl<T: PartialEq> PartialEq for BatchResult<T>
impl<T: PartialEq> PartialEq for BatchResult<T>
impl<T> StructuralPartialEq for BatchResult<T>
Auto Trait Implementations§
impl<T> Freeze for BatchResult<T>
impl<T> RefUnwindSafe for BatchResult<T>where
T: RefUnwindSafe,
impl<T> Send for BatchResult<T>where
T: Send,
impl<T> Sync for BatchResult<T>where
T: Sync,
impl<T> Unpin for BatchResult<T>
impl<T> UnsafeUnpin for BatchResult<T>
impl<T> UnwindSafe for BatchResult<T>where
T: RefUnwindSafe,
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