pub struct StripeCustomerStore { /* private fields */ }Expand description
In-memory mapping from app user id → Stripe customer id.
For dev / tests / single-process deployments. Production apps store this on the User entity directly so it survives restarts.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for StripeCustomerStore
impl RefUnwindSafe for StripeCustomerStore
impl Send for StripeCustomerStore
impl Sync for StripeCustomerStore
impl Unpin for StripeCustomerStore
impl UnsafeUnpin for StripeCustomerStore
impl UnwindSafe for StripeCustomerStore
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