pub(crate) struct RandomAvroGenerator<'a> {
pub(crate) ints: BTreeMap<usize, Box<dyn Generator<i32>>>,
pub(crate) longs: BTreeMap<usize, Box<dyn Generator<i64>>>,
pub(crate) strings: BTreeMap<usize, Box<dyn Generator<Vec<u8>>>>,
pub(crate) bytes: BTreeMap<usize, Box<dyn Generator<Vec<u8>>>>,
pub(crate) unions: BTreeMap<usize, Box<dyn Generator<usize>>>,
pub(crate) enums: BTreeMap<usize, Box<dyn Generator<usize>>>,
pub(crate) bools: BTreeMap<usize, Box<dyn Generator<bool>>>,
pub(crate) floats: BTreeMap<usize, Box<dyn Generator<f32>>>,
pub(crate) doubles: BTreeMap<usize, Box<dyn Generator<f64>>>,
pub(crate) decimals: BTreeMap<usize, Box<dyn Generator<Vec<u8>>>>,
pub(crate) array_lens: BTreeMap<usize, Box<dyn Generator<usize>>>,
pub(crate) schema: SchemaNode<'a>,
}
Fields§
§ints: BTreeMap<usize, Box<dyn Generator<i32>>>
§longs: BTreeMap<usize, Box<dyn Generator<i64>>>
§strings: BTreeMap<usize, Box<dyn Generator<Vec<u8>>>>
§bytes: BTreeMap<usize, Box<dyn Generator<Vec<u8>>>>
§unions: BTreeMap<usize, Box<dyn Generator<usize>>>
§enums: BTreeMap<usize, Box<dyn Generator<usize>>>
§bools: BTreeMap<usize, Box<dyn Generator<bool>>>
§floats: BTreeMap<usize, Box<dyn Generator<f32>>>
§doubles: BTreeMap<usize, Box<dyn Generator<f64>>>
§decimals: BTreeMap<usize, Box<dyn Generator<Vec<u8>>>>
§array_lens: BTreeMap<usize, Box<dyn Generator<usize>>>
§schema: SchemaNode<'a>
Implementations§
Source§impl<'a> RandomAvroGenerator<'a>
impl<'a> RandomAvroGenerator<'a>
pub(crate) fn gen_inner( &mut self, node: SchemaNode<'_>, rng: &mut ThreadRng, ) -> Value
pub fn gen(&mut self, rng: &mut ThreadRng) -> Value
pub(crate) fn new_inner( &mut self, node: SchemaNode<'a>, annotations: &Map<String, Value>, field_name: Option<&str>, )
pub fn new(schema: &'a Schema, annotations: &Value) -> Self
Trait Implementations§
Source§impl<'a> Clone for RandomAvroGenerator<'a>
impl<'a> Clone for RandomAvroGenerator<'a>
Source§fn clone(&self) -> RandomAvroGenerator<'a>
fn clone(&self) -> RandomAvroGenerator<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for RandomAvroGenerator<'a>
impl<'a> !RefUnwindSafe for RandomAvroGenerator<'a>
impl<'a> Send for RandomAvroGenerator<'a>
impl<'a> Sync for RandomAvroGenerator<'a>
impl<'a> Unpin for RandomAvroGenerator<'a>
impl<'a> !UnwindSafe for RandomAvroGenerator<'a>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Creates a shared type from an unshared type.