pub struct RecordingSubmission {
pub recording: Recording,
pub deduplicated: bool,
}Expand description
Result of durably submitting one recording.
Fields§
§recording: RecordingCurrent combined state after submission.
deduplicated: boolWhether AudioIngress already knew the same bytes.
Trait Implementations§
Source§impl Clone for RecordingSubmission
impl Clone for RecordingSubmission
Source§fn clone(&self) -> RecordingSubmission
fn clone(&self) -> RecordingSubmission
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 RecordingSubmission
impl RefUnwindSafe for RecordingSubmission
impl Send for RecordingSubmission
impl Sync for RecordingSubmission
impl Unpin for RecordingSubmission
impl UnsafeUnpin for RecordingSubmission
impl UnwindSafe for RecordingSubmission
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