pub struct WasmMissingDiagnostic;
Expand description
WasmMissingDiagnostic detects missing Wasm sources.
Trait Implementations§
Source§impl Default for WasmMissingDiagnostic
impl Default for WasmMissingDiagnostic
Source§fn default() -> WasmMissingDiagnostic
fn default() -> WasmMissingDiagnostic
Returns the “default value” for a type. Read more
Source§impl WasmDiagnostic for WasmMissingDiagnostic
impl WasmDiagnostic for WasmMissingDiagnostic
Source§type Diagnosis = WasmMissing
type Diagnosis = WasmMissing
A
Diagnosis
representing the problem(s) this can detect.Source§fn diagnose_wasm<'life0, 'life1, 'async_trait>(
&'life0 self,
_app: &'life1 PatientApp,
wasm: PatientWasm,
) -> Pin<Box<dyn Future<Output = Result<Vec<Self::Diagnosis>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn diagnose_wasm<'life0, 'life1, 'async_trait>(
&'life0 self,
_app: &'life1 PatientApp,
wasm: PatientWasm,
) -> Pin<Box<dyn Future<Output = Result<Vec<Self::Diagnosis>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Check the given
PatientWasm
, returning any problem(s) found.Auto Trait Implementations§
impl Freeze for WasmMissingDiagnostic
impl RefUnwindSafe for WasmMissingDiagnostic
impl Send for WasmMissingDiagnostic
impl Sync for WasmMissingDiagnostic
impl Unpin for WasmMissingDiagnostic
impl UnwindSafe for WasmMissingDiagnostic
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
Source§impl<T> Diagnostic for T
impl<T> Diagnostic for T
Source§type Diagnosis = <T as WasmDiagnostic>::Diagnosis
type Diagnosis = <T as WasmDiagnostic>::Diagnosis
A
Diagnosis
representing the problem(s) this can detect.Source§fn diagnose<'life0, 'life1, 'async_trait>(
&'life0 self,
patient: &'life1 PatientApp,
) -> Pin<Box<dyn Future<Output = Result<Vec<<T as Diagnostic>::Diagnosis>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
T: 'async_trait,
fn diagnose<'life0, 'life1, 'async_trait>(
&'life0 self,
patient: &'life1 PatientApp,
) -> Pin<Box<dyn Future<Output = Result<Vec<<T as Diagnostic>::Diagnosis>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
T: 'async_trait,
Check the given
PatientApp
, returning any problem(s) found. Read moreSource§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more