pub struct CompletedRecording {
pub session_id: [u8; 16],
pub service: String,
pub admin_key_id: String,
pub packets: Vec<PacketMetadata>,
pub total_packets: u64,
pub duration_secs: u64,
}Fields§
§session_id: [u8; 16]§service: String§admin_key_id: String§packets: Vec<PacketMetadata>§total_packets: u64§duration_secs: u64Trait Implementations§
Source§impl Clone for CompletedRecording
impl Clone for CompletedRecording
Source§fn clone(&self) -> CompletedRecording
fn clone(&self) -> CompletedRecording
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 CompletedRecording
impl RefUnwindSafe for CompletedRecording
impl Send for CompletedRecording
impl Sync for CompletedRecording
impl Unpin for CompletedRecording
impl UnsafeUnpin for CompletedRecording
impl UnwindSafe for CompletedRecording
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