pub struct ReceiverStatus {
pub tally: Option<Tally>,
pub connections: Option<i32>,
pub other: bool,
}Fields§
§tally: Option<Tally>Current Tally (program/preview) if known
connections: Option<i32>Number of active connections (None if unknown)
other: boolTrue when the receiver reports any other change (latency, PTZ, etc.)
Trait Implementations§
Source§impl Clone for ReceiverStatus
impl Clone for ReceiverStatus
Source§fn clone(&self) -> ReceiverStatus
fn clone(&self) -> ReceiverStatus
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 ReceiverStatus
impl RefUnwindSafe for ReceiverStatus
impl Send for ReceiverStatus
impl Sync for ReceiverStatus
impl Unpin for ReceiverStatus
impl UnsafeUnpin for ReceiverStatus
impl UnwindSafe for ReceiverStatus
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