pub struct RetrievePlan { /* private fields */ }
Expand description
Retrieves the plan with the given ID.
Implementations§
Source§impl RetrievePlan
impl RetrievePlan
Source§impl RetrievePlan
impl RetrievePlan
Sourcepub async fn send<C: StripeClient>(
&self,
client: &C,
) -> Result<<Self as StripeRequest>::Output, C::Err>
pub async fn send<C: StripeClient>( &self, client: &C, ) -> Result<<Self as StripeRequest>::Output, C::Err>
Send the request and return the deserialized response.
Sourcepub fn send_blocking<C: StripeBlockingClient>(
&self,
client: &C,
) -> Result<<Self as StripeRequest>::Output, C::Err>
pub fn send_blocking<C: StripeBlockingClient>( &self, client: &C, ) -> Result<<Self as StripeRequest>::Output, C::Err>
Send the request and return the deserialized response, blocking until completion.
Trait Implementations§
Source§impl Clone for RetrievePlan
impl Clone for RetrievePlan
Source§fn clone(&self) -> RetrievePlan
fn clone(&self) -> RetrievePlan
Returns a duplicate 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 moreSource§impl Debug for RetrievePlan
impl Debug for RetrievePlan
Source§impl Serialize for RetrievePlan
impl Serialize for RetrievePlan
Source§impl StripeRequest for RetrievePlan
impl StripeRequest for RetrievePlan
Source§fn build(&self) -> RequestBuilder
fn build(&self) -> RequestBuilder
Convert the struct into library-agnostic data that can be used by compatible
clients to make API calls.
Source§fn customize(&self) -> CustomizableStripeRequest<Self::Output>
fn customize(&self) -> CustomizableStripeRequest<Self::Output>
Convert to a builder allowing per-request customization.
Auto Trait Implementations§
impl Freeze for RetrievePlan
impl RefUnwindSafe for RetrievePlan
impl Send for RetrievePlan
impl Sync for RetrievePlan
impl Unpin for RetrievePlan
impl UnwindSafe for RetrievePlan
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