pub struct RecordingConfirmation {
pub recording_id: Uuid,
pub observations: Vec<ObservationConfirmation>,
}Expand description
Exact confirmations for one completed recording.
Fields§
§recording_id: UuidCompleted recording receiving the confirmations.
observations: Vec<ObservationConfirmation>One confirmation for every known observation, with no extras.
Trait Implementations§
Source§impl Clone for RecordingConfirmation
impl Clone for RecordingConfirmation
Source§fn clone(&self) -> RecordingConfirmation
fn clone(&self) -> RecordingConfirmation
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 RecordingConfirmation
impl Debug for RecordingConfirmation
Source§impl<'de> Deserialize<'de> for RecordingConfirmation
impl<'de> Deserialize<'de> for RecordingConfirmation
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 RecordingConfirmation
Source§impl PartialEq for RecordingConfirmation
impl PartialEq for RecordingConfirmation
Source§impl Serialize for RecordingConfirmation
impl Serialize for RecordingConfirmation
impl StructuralPartialEq for RecordingConfirmation
Auto Trait Implementations§
impl Freeze for RecordingConfirmation
impl RefUnwindSafe for RecordingConfirmation
impl Send for RecordingConfirmation
impl Sync for RecordingConfirmation
impl Unpin for RecordingConfirmation
impl UnsafeUnpin for RecordingConfirmation
impl UnwindSafe for RecordingConfirmation
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