pub struct ChunkConfirmation {
pub recording_id: Uuid,
pub chunk_index: usize,
pub observations: Vec<ObservationConfirmation>,
}Expand description
Exact speaker resolutions and signoff for one review chunk.
Fields§
§recording_id: UuidRecording receiving the chunk signoff.
chunk_index: usizeExact zero-based chunk index receiving signoff.
observations: Vec<ObservationConfirmation>One resolution for every chunk-local observation, with no extras.
Trait Implementations§
Source§impl Clone for ChunkConfirmation
impl Clone for ChunkConfirmation
Source§fn clone(&self) -> ChunkConfirmation
fn clone(&self) -> ChunkConfirmation
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 moreSource§impl Debug for ChunkConfirmation
impl Debug for ChunkConfirmation
Source§impl<'de> Deserialize<'de> for ChunkConfirmation
impl<'de> Deserialize<'de> for ChunkConfirmation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ChunkConfirmation
Source§impl PartialEq for ChunkConfirmation
impl PartialEq for ChunkConfirmation
Source§impl Serialize for ChunkConfirmation
impl Serialize for ChunkConfirmation
impl StructuralPartialEq for ChunkConfirmation
Auto Trait Implementations§
impl Freeze for ChunkConfirmation
impl RefUnwindSafe for ChunkConfirmation
impl Send for ChunkConfirmation
impl Sync for ChunkConfirmation
impl Unpin for ChunkConfirmation
impl UnsafeUnpin for ChunkConfirmation
impl UnwindSafe for ChunkConfirmation
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