Struct fake::ResultFaker

source ·
pub struct ResultFaker<T, E, R> { /* private fields */ }
Expand description

Custom fake Result generator.

Examples

use fake::{Fake, ResultFaker};
use fake::faker::name::en::Name;

// generate name on success but some error code on failure
let f = ResultFaker::ok(Name());
for _ in 0..2 {
    let a = f.fake::<Result<String, u8>>();
}
let f = ResultFaker::with(3.., 1..10);
for _ in 0..5 {
    let a = f.fake::<Result<u32, usize>>();
}

Implementations§

source§

impl<T> ResultFaker<T, Faker, u8>

source

pub fn ok(ok: T) -> ResultFaker<T, Faker, u8>

source§

impl<E> ResultFaker<Faker, E, u8>

source

pub fn err(err: E) -> ResultFaker<Faker, E, u8>

source§

impl<T, E> ResultFaker<T, E, u8>

source

pub fn with(ok: T, err: E) -> ResultFaker<T, E, u8>

source§

impl<T, E, R> ResultFaker<T, E, R>

source

pub fn new(ok: T, err: E, err_rate: R) -> ResultFaker<T, E, R>

Trait Implementations§

source§

impl Default for ResultFaker<Faker, Faker, u8>

source§

fn default() -> ResultFaker<Faker, Faker, u8>

Returns the “default value” for a type. Read more
source§

impl<T, E, U, V, X> Dummy<ResultFaker<U, V, X>> for Result<T, E>
where T: Dummy<U>, E: Dummy<V>, u8: Dummy<X>,

source§

fn dummy_with_rng<R: Rng + ?Sized>( config: &ResultFaker<U, V, X>, rng: &mut R ) -> Self

Generate a dummy value for a given type using a random number generator.
source§

fn dummy(config: &T) -> Self

Generate a dummy value for a type. Read more

Auto Trait Implementations§

§

impl<T, E, R> RefUnwindSafe for ResultFaker<T, E, R>

§

impl<T, E, R> Send for ResultFaker<T, E, R>
where E: Send, R: Send, T: Send,

§

impl<T, E, R> Sync for ResultFaker<T, E, R>
where E: Sync, R: Sync, T: Sync,

§

impl<T, E, R> Unpin for ResultFaker<T, E, R>
where E: Unpin, R: Unpin, T: Unpin,

§

impl<T, E, R> UnwindSafe for ResultFaker<T, E, R>
where E: UnwindSafe, R: UnwindSafe, T: UnwindSafe,

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> Fake for T

source§

fn fake<U>(&self) -> U
where Self: FakeBase<U>,

source§

fn fake_with_rng<U, R: Rng + ?Sized>(&self, rng: &mut R) -> U
where Self: FakeBase<U>,

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Same for T

§

type Output = T

Should always be Self
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.
§

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

§

fn vzip(self) -> V