pub struct CancelPaymentByIdempotencyKeyRequest {
pub idempotency_key: String,
}
Expand description
This is a model struct for CancelPaymentByIdempotencyRequest type.
Fields
idempotency_key: String
The idempotency_key
identifying the payment to be canceled.
Trait Implementations
sourceimpl Clone for CancelPaymentByIdempotencyKeyRequest
impl Clone for CancelPaymentByIdempotencyKeyRequest
sourcefn clone(&self) -> CancelPaymentByIdempotencyKeyRequest
fn clone(&self) -> CancelPaymentByIdempotencyKeyRequest
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 Default for CancelPaymentByIdempotencyKeyRequest
impl Default for CancelPaymentByIdempotencyKeyRequest
sourcefn default() -> CancelPaymentByIdempotencyKeyRequest
fn default() -> CancelPaymentByIdempotencyKeyRequest
Returns the “default value” for a type. Read more
sourceimpl PartialEq<CancelPaymentByIdempotencyKeyRequest> for CancelPaymentByIdempotencyKeyRequest
impl PartialEq<CancelPaymentByIdempotencyKeyRequest> for CancelPaymentByIdempotencyKeyRequest
sourcefn eq(&self, other: &CancelPaymentByIdempotencyKeyRequest) -> bool
fn eq(&self, other: &CancelPaymentByIdempotencyKeyRequest) -> bool
impl Eq for CancelPaymentByIdempotencyKeyRequest
impl StructuralEq for CancelPaymentByIdempotencyKeyRequest
impl StructuralPartialEq for CancelPaymentByIdempotencyKeyRequest
Auto Trait Implementations
impl RefUnwindSafe for CancelPaymentByIdempotencyKeyRequest
impl Send for CancelPaymentByIdempotencyKeyRequest
impl Sync for CancelPaymentByIdempotencyKeyRequest
impl Unpin for CancelPaymentByIdempotencyKeyRequest
impl UnwindSafe for CancelPaymentByIdempotencyKeyRequest
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
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.