pub struct VoicemailDetectionBackoffPlan {
pub start_at_seconds: Option<f64>,
pub frequency_seconds: Option<f64>,
pub max_retries: Option<f64>,
}
Fields§
§start_at_seconds: Option<f64>
This is the number of seconds to wait before starting the first retry attempt.
frequency_seconds: Option<f64>
This is the interval in seconds between retry attempts.
max_retries: Option<f64>
This is the maximum number of retry attempts before giving up.
Implementations§
Trait Implementations§
Source§impl Clone for VoicemailDetectionBackoffPlan
impl Clone for VoicemailDetectionBackoffPlan
Source§fn clone(&self) -> VoicemailDetectionBackoffPlan
fn clone(&self) -> VoicemailDetectionBackoffPlan
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for VoicemailDetectionBackoffPlan
impl Default for VoicemailDetectionBackoffPlan
Source§fn default() -> VoicemailDetectionBackoffPlan
fn default() -> VoicemailDetectionBackoffPlan
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VoicemailDetectionBackoffPlan
impl<'de> Deserialize<'de> for VoicemailDetectionBackoffPlan
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
Source§impl PartialEq for VoicemailDetectionBackoffPlan
impl PartialEq for VoicemailDetectionBackoffPlan
Source§fn eq(&self, other: &VoicemailDetectionBackoffPlan) -> bool
fn eq(&self, other: &VoicemailDetectionBackoffPlan) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for VoicemailDetectionBackoffPlan
Auto Trait Implementations§
impl Freeze for VoicemailDetectionBackoffPlan
impl RefUnwindSafe for VoicemailDetectionBackoffPlan
impl Send for VoicemailDetectionBackoffPlan
impl Sync for VoicemailDetectionBackoffPlan
impl Unpin for VoicemailDetectionBackoffPlan
impl UnwindSafe for VoicemailDetectionBackoffPlan
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