pub struct UpdatePaymentLinkResponse {
pub errors: Option<Vec<Error>>,
pub payment_link: Option<Box<PaymentLink>>,
}Fields§
§errors: Option<Vec<Error>>Any errors that occurred when updating the payment link.
payment_link: Option<Box<PaymentLink>>Implementations§
Source§impl UpdatePaymentLinkResponse
impl UpdatePaymentLinkResponse
pub fn new() -> UpdatePaymentLinkResponse
Trait Implementations§
Source§impl Clone for UpdatePaymentLinkResponse
impl Clone for UpdatePaymentLinkResponse
Source§fn clone(&self) -> UpdatePaymentLinkResponse
fn clone(&self) -> UpdatePaymentLinkResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdatePaymentLinkResponse
impl Debug for UpdatePaymentLinkResponse
Source§impl Default for UpdatePaymentLinkResponse
impl Default for UpdatePaymentLinkResponse
Source§fn default() -> UpdatePaymentLinkResponse
fn default() -> UpdatePaymentLinkResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdatePaymentLinkResponse
impl<'de> Deserialize<'de> for UpdatePaymentLinkResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for UpdatePaymentLinkResponse
Auto Trait Implementations§
impl Freeze for UpdatePaymentLinkResponse
impl RefUnwindSafe for UpdatePaymentLinkResponse
impl Send for UpdatePaymentLinkResponse
impl Sync for UpdatePaymentLinkResponse
impl Unpin for UpdatePaymentLinkResponse
impl UnsafeUnpin for UpdatePaymentLinkResponse
impl UnwindSafe for UpdatePaymentLinkResponse
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