pub struct StarterToolPorts<MS, AR, RV, PP, SP> {
pub memory_search: Arc<MS>,
pub artifact_reader: Arc<AR>,
pub verification: Arc<RV>,
pub patch_preview: Arc<PP>,
pub patch_submit: Arc<SP>,
}Fields§
§memory_search: Arc<MS>§artifact_reader: Arc<AR>§verification: Arc<RV>§patch_preview: Arc<PP>§patch_submit: Arc<SP>Auto Trait Implementations§
impl<MS, AR, RV, PP, SP> Freeze for StarterToolPorts<MS, AR, RV, PP, SP>
impl<MS, AR, RV, PP, SP> RefUnwindSafe for StarterToolPorts<MS, AR, RV, PP, SP>where
MS: RefUnwindSafe,
AR: RefUnwindSafe,
RV: RefUnwindSafe,
PP: RefUnwindSafe,
SP: RefUnwindSafe,
impl<MS, AR, RV, PP, SP> Send for StarterToolPorts<MS, AR, RV, PP, SP>
impl<MS, AR, RV, PP, SP> Sync for StarterToolPorts<MS, AR, RV, PP, SP>
impl<MS, AR, RV, PP, SP> Unpin for StarterToolPorts<MS, AR, RV, PP, SP>
impl<MS, AR, RV, PP, SP> UnsafeUnpin for StarterToolPorts<MS, AR, RV, PP, SP>
impl<MS, AR, RV, PP, SP> UnwindSafe for StarterToolPorts<MS, AR, RV, PP, SP>where
MS: RefUnwindSafe,
AR: RefUnwindSafe,
RV: RefUnwindSafe,
PP: RefUnwindSafe,
SP: 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