Struct jsonrpsee_server::RandomStringIdProvider
source · pub struct RandomStringIdProvider { /* private fields */ }
Expand description
Generates random strings of length len
as subscription ID.
Implementations
sourceimpl RandomStringIdProvider
impl RandomStringIdProvider
sourcepub fn new(len: usize) -> RandomStringIdProvider
pub fn new(len: usize) -> RandomStringIdProvider
Create a new random string provider.
Trait Implementations
sourceimpl Clone for RandomStringIdProvider
impl Clone for RandomStringIdProvider
sourcefn clone(&self) -> RandomStringIdProvider
fn clone(&self) -> RandomStringIdProvider
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for RandomStringIdProvider
impl Debug for RandomStringIdProvider
sourceimpl IdProvider for RandomStringIdProvider
impl IdProvider for RandomStringIdProvider
sourcefn next_id(&self) -> SubscriptionId<'static>
fn next_id(&self) -> SubscriptionId<'static>
Returns the next ID for the subscription.
Auto Trait Implementations
impl RefUnwindSafe for RandomStringIdProvider
impl Send for RandomStringIdProvider
impl Sync for RandomStringIdProvider
impl Unpin for RandomStringIdProvider
impl UnwindSafe for RandomStringIdProvider
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more