pub enum InitResult<T> {
Err(VclError),
Ok(T),
Pass,
}Expand description
The return type for DeliveryProcessor::new and FetchProcessor::new
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for InitResult<T>where
T: Freeze,
impl<T> !RefUnwindSafe for InitResult<T>
impl<T> !Send for InitResult<T>
impl<T> !Sync for InitResult<T>
impl<T> Unpin for InitResult<T>where
T: Unpin,
impl<T> !UnwindSafe for InitResult<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