Struct libafl::state::StdState

source ·
pub struct StdState<I, C, R, SC> { /* private fields */ }
Expand description

The state a fuzz run.

Implementations§

source§

impl<C, I, R, SC> StdState<I, C, R, SC>
where I: Input, C: Corpus<Input = <Self as UsesInput>::Input>, R: Rand, SC: Corpus<Input = <Self as UsesInput>::Input>,

source

pub fn must_load_initial_inputs(&self) -> bool

Decide if the state nust load the inputs

source

pub fn load_initial_inputs_by_filenames<E, EM, Z>( &mut self, fuzzer: &mut Z, executor: &mut E, manager: &mut EM, file_list: &[PathBuf] ) -> Result<(), Error>
where E: UsesState<State = Self>, EM: EventFirer<State = Self>, Z: Evaluator<E, EM, State = Self>,

Loads all intial inputs, even if they are not considered interesting. This is rarely the right method, use load_initial_inputs, and potentially fix your Feedback, instead. This method takes a list of files, instead of folders.

source

pub fn load_initial_inputs_forced<E, EM, Z>( &mut self, fuzzer: &mut Z, executor: &mut E, manager: &mut EM, in_dirs: &[PathBuf] ) -> Result<(), Error>
where E: UsesState<State = Self>, EM: EventFirer<State = Self>, Z: Evaluator<E, EM, State = Self>,

Loads all intial inputs, even if they are not considered interesting. This is rarely the right method, use load_initial_inputs, and potentially fix your Feedback, instead.

source

pub fn load_initial_inputs_by_filenames_forced<E, EM, Z>( &mut self, fuzzer: &mut Z, executor: &mut E, manager: &mut EM, file_list: &[PathBuf] ) -> Result<(), Error>
where E: UsesState<State = Self>, EM: EventFirer<State = Self>, Z: Evaluator<E, EM, State = Self>,

Loads initial inputs from the passed-in in_dirs. If forced is true, will add all testcases, no matter what. This method takes a list of files, instead of folders.

source

pub fn load_initial_inputs<E, EM, Z>( &mut self, fuzzer: &mut Z, executor: &mut E, manager: &mut EM, in_dirs: &[PathBuf] ) -> Result<(), Error>
where E: UsesState<State = Self>, EM: EventFirer<State = Self>, Z: Evaluator<E, EM, State = Self>,

Loads initial inputs from the passed-in in_dirs.

source

pub fn load_initial_inputs_multicore<E, EM, Z>( &mut self, fuzzer: &mut Z, executor: &mut E, manager: &mut EM, in_dirs: &[PathBuf], core_id: &CoreId, cores: &Cores ) -> Result<(), Error>
where E: UsesState<State = Self>, EM: EventFirer<State = Self>, Z: Evaluator<E, EM, State = Self>,

Loads initial inputs by dividing the from the passed-in in_dirs in a multicore fashion. Divides the corpus in chunks spread across cores.

source§

impl<C, I, R, SC> StdState<I, C, R, SC>
where I: Input, C: Corpus<Input = <Self as UsesInput>::Input>, R: Rand, SC: Corpus<Input = <Self as UsesInput>::Input>,

source

pub fn generate_initial_inputs_forced<G, E, EM, Z>( &mut self, fuzzer: &mut Z, executor: &mut E, generator: &mut G, manager: &mut EM, num: usize ) -> Result<(), Error>
where E: UsesState<State = Self>, EM: EventFirer<State = Self>, G: Generator<<Self as UsesInput>::Input, Self>, Z: Evaluator<E, EM, State = Self>,

Generate num initial inputs, using the passed-in generator and force the addition to corpus.

source

pub fn generate_initial_inputs<G, E, EM, Z>( &mut self, fuzzer: &mut Z, executor: &mut E, generator: &mut G, manager: &mut EM, num: usize ) -> Result<(), Error>
where E: UsesState<State = Self>, EM: EventFirer<State = Self>, G: Generator<<Self as UsesInput>::Input, Self>, Z: Evaluator<E, EM, State = Self>,

Generate num initial inputs, using the passed-in generator.

source

pub fn new<F, O>( rand: R, corpus: C, solutions: SC, feedback: &mut F, objective: &mut O ) -> Result<Self, Error>
where F: Feedback<Self>, O: Feedback<Self>,

Creates a new State, taking ownership of all of the individual components during fuzzing.

Trait Implementations§

source§

impl<I: Clone, C: Clone, R: Clone, SC: Clone> Clone for StdState<I, C, R, SC>

source§

fn clone(&self) -> StdState<I, C, R, SC>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<I: Debug, C: Debug, R: Debug, SC: Debug> Debug for StdState<I, C, R, SC>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, I, C, R, SC> Deserialize<'de> for StdState<I, C, R, SC>
where C: Serialize + for<'a> Deserialize<'a>, SC: Serialize + for<'a> Deserialize<'a>, R: Serialize + for<'a> Deserialize<'a>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<I, C, R, SC> HasClientPerfMonitor for StdState<I, C, R, SC>

source§

impl<I, C, R, SC> HasCorpus for StdState<I, C, R, SC>
where I: Input, C: Corpus<Input = <Self as UsesInput>::Input>, R: Rand,

source§

fn corpus(&self) -> &Self::Corpus

Returns the corpus

source§

fn corpus_mut(&mut self) -> &mut Self::Corpus

Returns the mutable corpus

§

type Corpus = C

The associated type implementing Corpus.
source§

impl<I, C, R, SC> HasCurrentCorpusIdx for StdState<I, C, R, SC>

source§

fn set_corpus_idx(&mut self, idx: CorpusId) -> Result<(), Error>

Set the current corpus index; we have started processing this corpus entry
source§

fn clear_corpus_idx(&mut self) -> Result<(), Error>

Clear the current corpus index; we are done with this entry
source§

fn current_corpus_idx(&self) -> Result<Option<CorpusId>, Error>

Fetch the current corpus index – typically used after a state recovery or transfer
source§

impl<I, C, R, SC> HasCurrentStage for StdState<I, C, R, SC>

source§

fn set_stage(&mut self, idx: usize) -> Result<(), Error>

Set the current stage; we have started processing this stage
source§

fn clear_stage(&mut self) -> Result<(), Error>

Clear the current stage; we are done processing this stage
source§

fn current_stage(&self) -> Result<Option<usize>, Error>

Fetch the current stage – typically used after a state recovery or transfer
source§

fn on_restart(&mut self) -> Result<(), Error>

Notify of a reset from which we may recover
source§

impl<I, C, R, SC> HasExecutions for StdState<I, C, R, SC>

source§

fn executions(&self) -> &u64

The executions counter

source§

fn executions_mut(&mut self) -> &mut u64

The executions counter (mutable)

source§

impl<I, C, R, SC> HasImported for StdState<I, C, R, SC>

source§

fn imported(&self) -> &usize

Return the number of new paths that imported from other fuzzers

source§

fn imported_mut(&mut self) -> &mut usize

Return the number of new paths that imported from other fuzzers

source§

impl<I, C, R, SC> HasLastReportTime for StdState<I, C, R, SC>

source§

fn last_report_time(&self) -> &Option<Duration>

The last time we reported progress,if available/used. This information is used by fuzzer maybe_report_progress.

source§

fn last_report_time_mut(&mut self) -> &mut Option<Duration>

The last time we reported progress,if available/used (mutable). This information is used by fuzzer maybe_report_progress.

source§

impl<I, C, R, SC> HasMaxSize for StdState<I, C, R, SC>

source§

fn max_size(&self) -> usize

The maximum size hint for items and mutations returned
source§

fn set_max_size(&mut self, max_size: usize)

Sets the maximum size hint for the items and mutations
source§

impl<I, C, R, SC> HasMetadata for StdState<I, C, R, SC>

source§

fn metadata_map(&self) -> &SerdeAnyMap

Get all the metadata into an hashbrown::HashMap

source§

fn metadata_map_mut(&mut self) -> &mut SerdeAnyMap

Get all the metadata into an hashbrown::HashMap (mutable)

source§

fn add_metadata<M>(&mut self, meta: M)
where M: SerdeAny,

Add a metadata to the metadata map
source§

fn metadata_or_insert_with<M>(&mut self, default: impl FnOnce() -> M) -> &mut M
where M: SerdeAny,

Gets metadata, or inserts it using the given construction function default
source§

fn remove_metadata<M>(&mut self) -> Option<Box<M>>
where M: SerdeAny,

Remove a metadata from the metadata map
source§

fn has_metadata<M>(&self) -> bool
where M: SerdeAny,

Check for a metadata Read more
source§

fn metadata<M>(&self) -> Result<&M, Error>
where M: SerdeAny,

To get metadata
source§

fn metadata_mut<M>(&mut self) -> Result<&mut M, Error>
where M: SerdeAny,

To get mutable metadata
source§

impl<I, C, R, SC> HasNamedMetadata for StdState<I, C, R, SC>

source§

fn named_metadata_map(&self) -> &NamedSerdeAnyMap

Get all the metadata into an hashbrown::HashMap

source§

fn named_metadata_map_mut(&mut self) -> &mut NamedSerdeAnyMap

Get all the metadata into an hashbrown::HashMap (mutable)

source§

fn add_named_metadata<M>(&mut self, name: &str, meta: M)
where M: SerdeAny,

Add a metadata to the metadata map
source§

fn remove_named_metadata<M>(&mut self, name: &str) -> Option<Box<M>>
where M: SerdeAny,

Add a metadata to the metadata map
source§

fn named_metadata_or_insert_with<M>( &mut self, name: &str, default: impl FnOnce() -> M ) -> &mut M
where M: SerdeAny,

Gets metadata, or inserts it using the given construction function default
source§

fn has_named_metadata<M>(&self, name: &str) -> bool
where M: SerdeAny,

Check for a metadata Read more
source§

fn named_metadata<M>(&self, name: &str) -> Result<&M, Error>
where M: SerdeAny,

To get named metadata
source§

fn named_metadata_mut<M>(&mut self, name: &str) -> Result<&mut M, Error>
where M: SerdeAny,

To get mutable named metadata
source§

impl<I, C, R, SC> HasNestedStageStatus for StdState<I, C, R, SC>

source§

fn enter_inner_stage(&mut self) -> Result<(), Error>

Enter a stage scope, potentially resuming to an inner stage status. Returns Ok(true) if resumed.
source§

fn exit_inner_stage(&mut self) -> Result<(), Error>

Exit a stage scope
source§

impl<I, C, R, SC> HasRand for StdState<I, C, R, SC>
where R: Rand,

source§

fn rand(&self) -> &Self::Rand

The rand instance

source§

fn rand_mut(&mut self) -> &mut Self::Rand

The rand instance (mutable)

§

type Rand = R

The associated type implementing Rand
source§

impl<I, C, R, SC> HasScalabilityMonitor for StdState<I, C, R, SC>

source§

impl<I, C, R, SC> HasSolutions for StdState<I, C, R, SC>
where I: Input, SC: Corpus<Input = <Self as UsesInput>::Input>,

source§

fn solutions(&self) -> &SC

Returns the solutions corpus

source§

fn solutions_mut(&mut self) -> &mut SC

Returns the solutions corpus (mutable)

§

type Solutions = SC

The associated type implementing Corpus for solutions
source§

impl<I, C, R, SC> HasStartTime for StdState<I, C, R, SC>

source§

fn start_time(&self) -> &Duration

The starting time

source§

fn start_time_mut(&mut self) -> &mut Duration

The starting time (mutable)

source§

impl<I, C, R, SC> HasTestcase for StdState<I, C, R, SC>
where I: Input, C: Corpus<Input = <Self as UsesInput>::Input>, R: Rand,

source§

fn testcase( &self, id: CorpusId ) -> Result<Ref<'_, Testcase<<Self as UsesInput>::Input>>, Error>

To get the testcase

source§

fn testcase_mut( &self, id: CorpusId ) -> Result<RefMut<'_, Testcase<<Self as UsesInput>::Input>>, Error>

To get mutable testcase

source§

impl<I, C, R, SC> Serialize for StdState<I, C, R, SC>
where C: Serialize + for<'a> Deserialize<'a>, SC: Serialize + for<'a> Deserialize<'a>, R: Serialize + for<'a> Deserialize<'a>,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<I, C, R, SC> UsesInput for StdState<I, C, R, SC>
where I: Input,

§

type Input = I

Type which will be used throughout this state.
source§

impl<I, C, R, SC> State for StdState<I, C, R, SC>
where C: Corpus<Input = Self::Input>, R: Rand, SC: Corpus<Input = Self::Input>, Self: UsesInput,

Auto Trait Implementations§

§

impl<I, C, R, SC> Freeze for StdState<I, C, R, SC>
where R: Freeze, C: Freeze, SC: Freeze,

§

impl<I, C, R, SC> !RefUnwindSafe for StdState<I, C, R, SC>

§

impl<I, C, R, SC> !Send for StdState<I, C, R, SC>

§

impl<I, C, R, SC> !Sync for StdState<I, C, R, SC>

§

impl<I, C, R, SC> Unpin for StdState<I, C, R, SC>
where R: Unpin, C: Unpin, SC: Unpin, I: Unpin,

§

impl<I, C, R, SC> !UnwindSafe for StdState<I, C, R, SC>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Conv for T

source§

fn conv<T>(self) -> T
where Self: Into<T>,

Converts self into T using Into<T>. Read more
source§

impl<T> FmtForward for T

source§

fn fmt_binary(self) -> FmtBinary<Self>
where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
source§

fn fmt_display(self) -> FmtDisplay<Self>
where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
source§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>
where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
source§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>
where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
source§

fn fmt_octal(self) -> FmtOctal<Self>
where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
source§

fn fmt_pointer(self) -> FmtPointer<Self>
where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
source§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>
where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
source§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>
where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
source§

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<I, T> HasCurrentTestcase<I> for T
where I: Input, T: HasCorpus<Input = I> + HasCurrentCorpusIdx + UsesInput,

source§

fn current_testcase(&self) -> Result<Ref<'_, Testcase<I>>, Error>

Gets the current Testcase we are fuzzing Read more
source§

fn current_testcase_mut(&self) -> Result<RefMut<'_, Testcase<I>>, Error>

Gets the current Testcase we are fuzzing (mut) Read more
source§

fn current_input_cloned(&self) -> Result<I, Error>

Gets a cloned representation of the current Testcase. Read more
source§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

source§

const WITNESS: W = W::MAKE

A constant of the type witness
source§

impl<T> Identity for T
where T: ?Sized,

§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
source§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pipe for T
where T: ?Sized,

source§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
source§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R
where R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
source§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
source§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
source§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
source§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
source§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
source§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
source§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
source§

impl<Tail, T> Prepend<T> for Tail

§

type PreprendResult = Tail

The Resulting TupleList, of an Prepend::prepend() call, including the prepended entry.
source§

fn prepend(self, value: T) -> (T, <Tail as Prepend<T>>::PreprendResult)

Prepend a value to this tuple, returning a new tuple with prepended value.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer ) -> Result<(), ErrorImpl>

source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

source§

impl<T> Tap for T

source§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
source§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
source§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
source§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
source§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
source§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
source§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
source§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
source§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
source§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
source§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
source§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
source§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
source§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
source§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
source§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> TryConv for T

source§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> MaybeHasClientPerfMonitor for T

source§

impl<T> MaybeHasScalabilityMonitor for T