pub struct QueueDepthBytes {
pub input: u32,
pub output: u32,
pub render_frames: u8,
}Expand description
Queue depths used by the policy at decision time.
Fields§
§input: u32Input bytes waiting for PTY write.
output: u32Output bytes waiting for websocket send.
render_frames: u8Client render queue depth in frames.
Trait Implementations§
Source§impl Clone for QueueDepthBytes
impl Clone for QueueDepthBytes
Source§fn clone(&self) -> QueueDepthBytes
fn clone(&self) -> QueueDepthBytes
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 QueueDepthBytes
impl Debug for QueueDepthBytes
Source§impl PartialEq for QueueDepthBytes
impl PartialEq for QueueDepthBytes
impl Copy for QueueDepthBytes
impl Eq for QueueDepthBytes
impl StructuralPartialEq for QueueDepthBytes
Auto Trait Implementations§
impl Freeze for QueueDepthBytes
impl RefUnwindSafe for QueueDepthBytes
impl Send for QueueDepthBytes
impl Sync for QueueDepthBytes
impl Unpin for QueueDepthBytes
impl UnwindSafe for QueueDepthBytes
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