pub enum ValueTypeHint {
Null,
Bool,
Number,
String,
Bytes,
Sequence,
Map,
}Expand description
Value classification hint for evidence gathering.
Variants§
Null
Null-like values.
Bool
Boolean.
Number
Numeric primitive.
String
Text string.
Bytes
Raw bytes (e.g., base64 segments).
Sequence
Sequence (array/list/tuple).
Map
Map/struct/object.
Trait Implementations§
Source§impl Clone for ValueTypeHint
impl Clone for ValueTypeHint
Source§fn clone(&self) -> ValueTypeHint
fn clone(&self) -> ValueTypeHint
Returns a duplicate 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 ValueTypeHint
impl Debug for ValueTypeHint
Source§impl PartialEq for ValueTypeHint
impl PartialEq for ValueTypeHint
impl Copy for ValueTypeHint
impl Eq for ValueTypeHint
impl StructuralPartialEq for ValueTypeHint
Auto Trait Implementations§
impl Freeze for ValueTypeHint
impl RefUnwindSafe for ValueTypeHint
impl Send for ValueTypeHint
impl Sync for ValueTypeHint
impl Unpin for ValueTypeHint
impl UnwindSafe for ValueTypeHint
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