Skip to main content

Kind

Enum Kind 

Source
pub enum Kind<'a> {
Show 29 variants Unit, Bool(bool), Char(char), I8(i8), I16(i16), I32(i32), I64(i64), I128(i128), Isize(isize), U8(u8), U16(u16), U32(u32), U64(u64), U128(u128), Usize(usize), F32(f32), F64(f64), Str(Cow<'a, str>), Bytes(&'a [u8]), Struct, Tuple, TupleStruct, Sequence, Map, Set, Enum, Option, Result, Opaque,
}
Expand description

The kind of value being inspected.

This represents the fundamental shape and type of a value, including scalar types, containers, and structured data.

Variants§

§

Unit

The unit type ().

§

Bool(bool)

A boolean value.

§

Char(char)

A character.

§

I8(i8)

A signed 8-bit integer.

§

I16(i16)

A signed 16-bit integer.

§

I32(i32)

A signed 32-bit integer.

§

I64(i64)

A signed 64-bit integer.

§

I128(i128)

A signed 128-bit integer.

§

Isize(isize)

A pointer-sized signed integer.

§

U8(u8)

An unsigned 8-bit integer.

§

U16(u16)

An unsigned 16-bit integer.

§

U32(u32)

An unsigned 32-bit integer.

§

U64(u64)

An unsigned 64-bit integer.

§

U128(u128)

An unsigned 128-bit integer.

§

Usize(usize)

A pointer-sized unsigned integer.

§

F32(f32)

A 32-bit floating point number.

§

F64(f64)

A 64-bit floating point number.

§

Str(Cow<'a, str>)

A string value.

§

Bytes(&'a [u8])

A byte sequence.

§

Struct

A struct with named fields.

§

Tuple

A tuple with positional fields.

§

TupleStruct

A tuple struct with positional fields.

§

Sequence

A sequence (Vec, slice, array).

§

Map

A map (HashMap, BTreeMap).

§

Set

A set (HashSet, BTreeSet).

§

Enum

An enum with a selected variant.

§

Option

An Option value.

§

Result

A Result value.

§

Opaque

An opaque value that doesn’t expose internal structure.

Implementations§

Source§

impl<'a> Kind<'a>

Source

pub fn name(&self) -> &'static str

Returns a human-readable name for this kind.

Source

pub fn is_scalar(&self) -> bool

Returns true if this is a scalar kind (primitives without children).

Trait Implementations§

Source§

impl<'a> Clone for Kind<'a>

Source§

fn clone(&self) -> Kind<'a>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for Kind<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> PartialEq for Kind<'a>

Source§

fn eq(&self, other: &Kind<'a>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<'a> StructuralPartialEq for Kind<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Kind<'a>

§

impl<'a> RefUnwindSafe for Kind<'a>

§

impl<'a> Send for Kind<'a>

§

impl<'a> Sync for Kind<'a>

§

impl<'a> Unpin for Kind<'a>

§

impl<'a> UnsafeUnpin for Kind<'a>

§

impl<'a> UnwindSafe for Kind<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.