pub struct SenderSummary {
pub id: String,
pub email_address: String,
pub lifecycle_state: SenderLifecycleState,
pub time_created: String,
pub is_spf: Option<bool>,
pub compartment_id: Option<String>,
}Expand description
Sender summary from list_senders API
Fields§
§id: StringSender OCID
email_address: StringEmail address
lifecycle_state: SenderLifecycleStateLifecycle state
time_created: StringTime created
is_spf: Option<bool>Is SPF (Sender Policy Framework) configured (optional)
compartment_id: Option<String>Compartment ID (optional, not always included)
Trait Implementations§
Source§impl Clone for SenderSummary
impl Clone for SenderSummary
Source§fn clone(&self) -> SenderSummary
fn clone(&self) -> SenderSummary
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 moreSource§impl Debug for SenderSummary
impl Debug for SenderSummary
Source§impl<'de> Deserialize<'de> for SenderSummary
impl<'de> Deserialize<'de> for SenderSummary
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 SenderSummary
impl RefUnwindSafe for SenderSummary
impl Send for SenderSummary
impl Sync for SenderSummary
impl Unpin for SenderSummary
impl UnwindSafe for SenderSummary
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