pub enum HealthcheckRetries {
Count(String),
Expression(String),
Other(String),
}Expand description
A health-check retry count retained before interpolation.
Variants§
Count(String)
A non-negative integer with its spelling retained.
Expression(String)
A deferred interpolation expression.
Other(String)
An invalid or provider-specific scalar retained for diagnostics.
Implementations§
Trait Implementations§
Source§impl Clone for HealthcheckRetries
impl Clone for HealthcheckRetries
Source§fn clone(&self) -> HealthcheckRetries
fn clone(&self) -> HealthcheckRetries
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 HealthcheckRetries
impl Debug for HealthcheckRetries
impl Eq for HealthcheckRetries
Source§impl PartialEq for HealthcheckRetries
impl PartialEq for HealthcheckRetries
impl StructuralPartialEq for HealthcheckRetries
Auto Trait Implementations§
impl Freeze for HealthcheckRetries
impl RefUnwindSafe for HealthcheckRetries
impl Send for HealthcheckRetries
impl Sync for HealthcheckRetries
impl Unpin for HealthcheckRetries
impl UnsafeUnpin for HealthcheckRetries
impl UnwindSafe for HealthcheckRetries
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