pub struct PendingConfirmation {
pub subscription_arn: String,
pub topic_arn: String,
pub protocol: String,
pub endpoint: String,
pub token: Option<String>,
}Expand description
A pending subscription confirmation.
Fields§
§subscription_arn: String§topic_arn: String§protocol: String§endpoint: String§token: Option<String>Trait Implementations§
Source§impl Clone for PendingConfirmation
impl Clone for PendingConfirmation
Source§fn clone(&self) -> PendingConfirmation
fn clone(&self) -> PendingConfirmation
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 moreAuto Trait Implementations§
impl Freeze for PendingConfirmation
impl RefUnwindSafe for PendingConfirmation
impl Send for PendingConfirmation
impl Sync for PendingConfirmation
impl Unpin for PendingConfirmation
impl UnsafeUnpin for PendingConfirmation
impl UnwindSafe for PendingConfirmation
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