pub struct ReporterConfig {
pub endpoint: String,
pub interval_secs: u64,
pub enabled: bool,
pub api_key: Option<String>,
pub max_buffer_size: usize,
pub format: ReportFormat,
}Fields§
§endpoint: String§interval_secs: u64§enabled: bool§api_key: Option<String>§max_buffer_size: usize§format: ReportFormatImplementations§
Trait Implementations§
Source§impl Clone for ReporterConfig
impl Clone for ReporterConfig
Source§fn clone(&self) -> ReporterConfig
fn clone(&self) -> ReporterConfig
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 ReporterConfig
impl Debug for ReporterConfig
Auto Trait Implementations§
impl Freeze for ReporterConfig
impl RefUnwindSafe for ReporterConfig
impl Send for ReporterConfig
impl Sync for ReporterConfig
impl Unpin for ReporterConfig
impl UnwindSafe for ReporterConfig
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