pub struct PendingConfirmation {
pub subscription_arn: String,
pub topic_arn: String,
pub protocol: String,
pub endpoint: String,
pub token: Option<String>,
}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 (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 PendingConfirmation
impl Debug for PendingConfirmation
Source§impl<'de> Deserialize<'de> for PendingConfirmation
impl<'de> Deserialize<'de> for PendingConfirmation
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
Auto 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