pub struct EventQueueOptions {
pub flush_events_interval: Duration,
pub disable_automatic_event_logging: bool,
pub disable_custom_event_logging: bool,
pub max_event_queue_size: i32,
pub max_user_event_queue_size: i32,
pub flush_events_batch_size: i32,
pub flush_events_queue_size: i32,
pub events_api_base_uri: String,
}Fields§
§flush_events_interval: Duration§disable_automatic_event_logging: bool§disable_custom_event_logging: bool§max_event_queue_size: i32§max_user_event_queue_size: i32§flush_events_batch_size: i32§flush_events_queue_size: i32§events_api_base_uri: StringImplementations§
Source§impl EventQueueOptions
impl EventQueueOptions
pub fn is_event_logging_disabled(&self, event_type: *const EventType) -> bool
Trait Implementations§
Source§impl Clone for EventQueueOptions
impl Clone for EventQueueOptions
Source§fn clone(&self) -> EventQueueOptions
fn clone(&self) -> EventQueueOptions
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 moreAuto Trait Implementations§
impl Freeze for EventQueueOptions
impl RefUnwindSafe for EventQueueOptions
impl Send for EventQueueOptions
impl Sync for EventQueueOptions
impl Unpin for EventQueueOptions
impl UnwindSafe for EventQueueOptions
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