pub struct ExporterPolicy {
pub retries: u32,
pub backoff_seconds: f64,
pub timeout_seconds: f64,
pub fail_open: bool,
pub allow_blocking_in_event_loop: bool,
}Fields§
§retries: u32§backoff_seconds: f64§timeout_seconds: f64§fail_open: bool§allow_blocking_in_event_loop: boolTrait Implementations§
Source§impl Clone for ExporterPolicy
impl Clone for ExporterPolicy
Source§fn clone(&self) -> ExporterPolicy
fn clone(&self) -> ExporterPolicy
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 ExporterPolicy
impl Debug for ExporterPolicy
Source§impl Default for ExporterPolicy
impl Default for ExporterPolicy
Source§impl PartialEq for ExporterPolicy
impl PartialEq for ExporterPolicy
impl StructuralPartialEq for ExporterPolicy
Auto Trait Implementations§
impl Freeze for ExporterPolicy
impl RefUnwindSafe for ExporterPolicy
impl Send for ExporterPolicy
impl Sync for ExporterPolicy
impl Unpin for ExporterPolicy
impl UnsafeUnpin for ExporterPolicy
impl UnwindSafe for ExporterPolicy
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