pub struct Options {
pub api_key: String,
pub repository: String,
pub branch: String,
pub system_name: Option<String>,
pub environment: Option<String>,
pub endpoint: String,
pub capture_content: bool,
pub sample_rate: f64,
pub max_queue_size: usize,
pub timeout: Duration,
pub redact: Option<Redactor>,
}Fields§
§api_key: String§repository: String§branch: String§system_name: Option<String>§environment: Option<String>§endpoint: String§capture_content: bool§sample_rate: f64§max_queue_size: usize§timeout: Duration§redact: Option<Redactor>Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Options
impl !UnwindSafe for Options
impl Freeze for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnsafeUnpin for Options
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