pub struct RecordingDescriptor {Show 14 fields
pub recording_id: i64,
pub start_position: i64,
pub stop_position: i64,
pub start_timestamp: i64,
pub stop_timestamp: i64,
pub position: i64,
pub recording_length: i64,
pub control_session_id: i32,
pub correlation_id: i64,
pub session_id: i32,
pub stream_id: i32,
pub channel: String,
pub source_identity: String,
pub original_channel: String,
}Expand description
Recording descriptor for owned recording data
Fields§
§recording_id: i64§start_position: i64§stop_position: i64§start_timestamp: i64§stop_timestamp: i64§position: i64§recording_length: i64§control_session_id: i32§correlation_id: i64§session_id: i32§stream_id: i32§channel: String§source_identity: String§original_channel: StringTrait Implementations§
Source§impl Clone for RecordingDescriptor
impl Clone for RecordingDescriptor
Source§fn clone(&self) -> RecordingDescriptor
fn clone(&self) -> RecordingDescriptor
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 RecordingDescriptor
impl RefUnwindSafe for RecordingDescriptor
impl Send for RecordingDescriptor
impl Sync for RecordingDescriptor
impl Unpin for RecordingDescriptor
impl UnsafeUnpin for RecordingDescriptor
impl UnwindSafe for RecordingDescriptor
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