pub struct EventBufferPolicy {
pub encoded_inputs_queue_max: u32,
pub encoded_input_bytes_queue_max: u32,
pub ime_trace_queue_max: u32,
pub link_click_queue_max: u32,
pub accessibility_announcement_queue_max: u32,
pub attach_transition_queue_max: u32,
pub event_subscription_queue_default_max: u32,
pub event_subscription_queue_configurable_max: u32,
pub event_subscription_registry_max: u32,
}Expand description
Bounded host-drained queue policy (drop-oldest), mirroring the
Bounded Buffering Contract in docs/spec/frankenterm-web-api.md.
Fields§
§encoded_inputs_queue_max: u32encoded_inputs_queue_max.
encoded_input_bytes_queue_max: u32encoded_input_bytes_queue_max.
ime_trace_queue_max: u32ime_trace_queue_max.
link_click_queue_max: u32link_click_queue_max.
accessibility_announcement_queue_max: u32accessibility_announcement_queue_max.
attach_transition_queue_max: u32attach_transition_queue_max.
event_subscription_queue_default_max: u32event_subscription_queue_default_max.
event_subscription_queue_configurable_max: u32event_subscription_queue_configurable_max (upper bound for the above).
event_subscription_registry_max: u32event_subscription_registry_max.
Implementations§
Trait Implementations§
Source§impl Clone for EventBufferPolicy
impl Clone for EventBufferPolicy
Source§fn clone(&self) -> EventBufferPolicy
fn clone(&self) -> EventBufferPolicy
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 moreimpl Copy for EventBufferPolicy
Source§impl Debug for EventBufferPolicy
impl Debug for EventBufferPolicy
impl Eq for EventBufferPolicy
Source§impl PartialEq for EventBufferPolicy
impl PartialEq for EventBufferPolicy
Source§fn eq(&self, other: &EventBufferPolicy) -> bool
fn eq(&self, other: &EventBufferPolicy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EventBufferPolicy
Auto Trait Implementations§
impl Freeze for EventBufferPolicy
impl RefUnwindSafe for EventBufferPolicy
impl Send for EventBufferPolicy
impl Sync for EventBufferPolicy
impl Unpin for EventBufferPolicy
impl UnsafeUnpin for EventBufferPolicy
impl UnwindSafe for EventBufferPolicy
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.