pub enum ParseWarning {
UnknownThreadRef(ThreadRef),
UnknownProcessRef(ProcessRef),
UnknownTraceRecordType(u8),
SkippingArgWithUnknownType {
name: FlyStr,
},
UnknownProviderId(u32),
UnknownStringId(NonZeroU16),
RecordForZeroStringId,
UnknownLargeBlobType(u8),
UnknownMetadataRecordType(u8),
UnknownSchedulingRecordType(u8),
}
Expand description
Scenarios encountered during parsing that didn’t prevent parsing from succeeding but which might affect analysis of the session.
Variants§
UnknownThreadRef(ThreadRef)
UnknownProcessRef(ProcessRef)
UnknownTraceRecordType(u8)
SkippingArgWithUnknownType
UnknownProviderId(u32)
UnknownStringId(NonZeroU16)
RecordForZeroStringId
UnknownLargeBlobType(u8)
UnknownMetadataRecordType(u8)
UnknownSchedulingRecordType(u8)
Trait Implementations§
Source§impl Clone for ParseWarning
impl Clone for ParseWarning
Source§fn clone(&self) -> ParseWarning
fn clone(&self) -> ParseWarning
Returns a copy 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 moreSource§impl Debug for ParseWarning
impl Debug for ParseWarning
Source§impl Display for ParseWarning
impl Display for ParseWarning
Source§impl Error for ParseWarning
impl Error for ParseWarning
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ParseWarning
impl PartialEq for ParseWarning
impl StructuralPartialEq for ParseWarning
Auto Trait Implementations§
impl Freeze for ParseWarning
impl RefUnwindSafe for ParseWarning
impl Send for ParseWarning
impl Sync for ParseWarning
impl Unpin for ParseWarning
impl UnwindSafe for ParseWarning
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)