#[non_exhaustive]pub enum MetadataCollectorEvent {
DidCollectDateRangeMetadataGroups {
groups: Vec<DateRangeMetadataGroup>,
new_indices: Vec<usize>,
modified_indices: Vec<usize>,
},
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DidCollectDateRangeMetadataGroups
Trait Implementations§
Source§impl Clone for MetadataCollectorEvent
impl Clone for MetadataCollectorEvent
Source§fn clone(&self) -> MetadataCollectorEvent
fn clone(&self) -> MetadataCollectorEvent
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 MetadataCollectorEvent
impl Debug for MetadataCollectorEvent
Source§impl PartialEq for MetadataCollectorEvent
impl PartialEq for MetadataCollectorEvent
Source§fn eq(&self, other: &MetadataCollectorEvent) -> bool
fn eq(&self, other: &MetadataCollectorEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MetadataCollectorEvent
Auto Trait Implementations§
impl Freeze for MetadataCollectorEvent
impl RefUnwindSafe for MetadataCollectorEvent
impl Send for MetadataCollectorEvent
impl Sync for MetadataCollectorEvent
impl Unpin for MetadataCollectorEvent
impl UnsafeUnpin for MetadataCollectorEvent
impl UnwindSafe for MetadataCollectorEvent
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