Struct amazon_sp_notifications::models::subscription::Subscription
source · [−]pub struct Subscription {
pub subscription_id: String,
pub payload_version: String,
pub destination_id: String,
pub processing_directive: Option<Box<ProcessingDirective>>,
}Expand description
Subscription : Represents a subscription to receive notifications.
Fields
subscription_id: StringThe subscription identifier generated when the subscription is created.
payload_version: StringThe version of the payload object to be used in the notification.
destination_id: StringThe identifier for the destination where notifications will be delivered.
processing_directive: Option<Box<ProcessingDirective>>Implementations
sourceimpl Subscription
impl Subscription
Trait Implementations
sourceimpl Clone for Subscription
impl Clone for Subscription
sourcefn clone(&self) -> Subscription
fn clone(&self) -> Subscription
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 Debug for Subscription
impl Debug for Subscription
sourceimpl Default for Subscription
impl Default for Subscription
sourcefn default() -> Subscription
fn default() -> Subscription
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for Subscription
impl<'de> Deserialize<'de> for Subscription
sourcefn 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
sourceimpl PartialEq<Subscription> for Subscription
impl PartialEq<Subscription> for Subscription
sourcefn eq(&self, other: &Subscription) -> bool
fn eq(&self, other: &Subscription) -> bool
sourceimpl Serialize for Subscription
impl Serialize for Subscription
impl StructuralPartialEq for Subscription
Auto Trait Implementations
impl RefUnwindSafe for Subscription
impl Send for Subscription
impl Sync for Subscription
impl Unpin for Subscription
impl UnwindSafe for Subscription
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