pub struct IncompleteRecording {
pub session_id: [u8; 16],
pub service: String,
pub admin_key_id: String,
pub total_packets: u64,
pub duration_secs: u64,
pub reason: RecordingStopReason,
}Fields§
§session_id: [u8; 16]§service: String§admin_key_id: String§total_packets: u64§duration_secs: u64§reason: RecordingStopReasonTrait Implementations§
Source§impl Clone for IncompleteRecording
impl Clone for IncompleteRecording
Source§fn clone(&self) -> IncompleteRecording
fn clone(&self) -> IncompleteRecording
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 moreAuto Trait Implementations§
impl Freeze for IncompleteRecording
impl RefUnwindSafe for IncompleteRecording
impl Send for IncompleteRecording
impl Sync for IncompleteRecording
impl Unpin for IncompleteRecording
impl UnsafeUnpin for IncompleteRecording
impl UnwindSafe for IncompleteRecording
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