Struct aws_sdk_sesv2::types::TopicPreference
source · #[non_exhaustive]pub struct TopicPreference {
pub topic_name: String,
pub subscription_status: SubscriptionStatus,
}Expand description
The contact's preference for being opted-in to or opted-out of a topic.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.topic_name: StringThe name of the topic.
subscription_status: SubscriptionStatusThe contact's subscription status to a topic which is either OPT_IN or OPT_OUT.
Implementations§
source§impl TopicPreference
impl TopicPreference
sourcepub fn topic_name(&self) -> &str
pub fn topic_name(&self) -> &str
The name of the topic.
sourcepub fn subscription_status(&self) -> &SubscriptionStatus
pub fn subscription_status(&self) -> &SubscriptionStatus
The contact's subscription status to a topic which is either OPT_IN or OPT_OUT.
source§impl TopicPreference
impl TopicPreference
sourcepub fn builder() -> TopicPreferenceBuilder
pub fn builder() -> TopicPreferenceBuilder
Creates a new builder-style object to manufacture TopicPreference.
Trait Implementations§
source§impl Clone for TopicPreference
impl Clone for TopicPreference
source§fn clone(&self) -> TopicPreference
fn clone(&self) -> TopicPreference
Returns a copy 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 moresource§impl Debug for TopicPreference
impl Debug for TopicPreference
source§impl PartialEq for TopicPreference
impl PartialEq for TopicPreference
source§fn eq(&self, other: &TopicPreference) -> bool
fn eq(&self, other: &TopicPreference) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TopicPreference
Auto Trait Implementations§
impl RefUnwindSafe for TopicPreference
impl Send for TopicPreference
impl Sync for TopicPreference
impl Unpin for TopicPreference
impl UnwindSafe for TopicPreference
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.