Struct TypeId

Source
pub struct TypeId(/* private fields */);
Expand description

Thin wrapper for std::any::TypeId, which represents a globally unique identifier for a type.

Each TypeId is an opaque object which does not allow inspection of what’s inside but does allow basic operations such as cloning, comparison, printing, and showing.

While the std::any::TypeId type is currently only available for 'static types, this wrapped version is instead provided for any type implementing the Transient trait defined in this crate by simply querying the TypeId of the Static associated type defined in its Transient impl.

A slight caveat of this implementation is that this TypeId for some type T: Transient is technically the unique identifier for T::Static as defined in its Transient impl instead of T itself, but as long as the Transient trait was implemented correctly (which the unsafe implementor pinky-promised they did), then this “static identity” is effectively equivalent. However, this identifier ignores all lifetime information about the type, &'short str will have the same TypeId as &'static str, and unsafe code should not assume that it can ignore lifetimes based on the TypeId alone.

Quoting from the std::any::TypeId documentation: while TypeId implements Hash, PartialOrd, and Ord, it is worth noting that the hashes and ordering will vary between Rust releases. Beware of relying on them inside of your code!

§Examples

use transient::{TypeId, Any, Transient};

let static_str = "cookie_monster";
// 'static types have a `TypeId` just like in the `std::any` module (as long
// as they implement the `Transient` trait, which &'static str does); however,
// we use the `Transient::static_type_id` method or `TypeId::of_val` function
// instead of `Any::type_id` when dealing with concrete types to avoid needing
// to use the fully qualified path (see `Any::type_id` docs).
assert_eq!(static_str.static_type_id(), TypeId::of::<&'static str>());
assert_eq!(TypeId::of_val(&static_str), TypeId::of::<&'static str>());
{
    let temp_string = static_str.to_string();
    let temp_str: &str = &temp_string;
    // unlike `std::any`, non-'static types also have a `TypeId`
    assert_eq!(temp_str.static_type_id(), TypeId::of::<&'_ str>());
    // note that this `TypeId` will match regardless of the lifetime
    assert_eq!(temp_str.static_type_id(), TypeId::of::<&'static str>());
}
// this `TypeId` can also be compared to a `std::any::TypeId`
assert_eq!(TypeId::of::<&'_ str>(), std::any::TypeId::of::<&'static str>());

Implementations§

Source§

impl TypeId

Source

pub fn of<T: Transient>() -> Self

Returns the TypeId of the Transient type this generic function has been instantiated with.

See the TypeId documentation for a discussion of the subtle differences between this identifier and the std::any::TypeId.

§Examples
use transient::{Transient, Any, TypeId};

fn is_string_slice<T: Transient>(_s: &T) -> bool {
    TypeId::of::<&str>() == TypeId::of::<T>()
}

let string = "cookie monster".to_string();
let string_slice: &str = &string;

assert_eq!(is_string_slice(&0), false);
assert_eq!(is_string_slice(&string), false);
assert_eq!(is_string_slice(&string_slice), true);
assert_eq!(is_string_slice(&"cookie monster"), true);
Source

pub fn of_val<T: Transient>(_value: &T) -> Self

Returns the TypeId for the type of the given value.

This is effectively the same as TypeId::of, but allows a value to provided so that type inference can be used to get the type T instead of needing to explicitly specify it.

See the TypeId documentation for a discussion of the subtle differences between this identifier and the std::any::TypeId.

Trait Implementations§

Source§

impl Clone for TypeId

Source§

fn clone(&self) -> TypeId

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for TypeId

Source§

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

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

impl From<TypeId> for TypeId

Source§

fn from(value: TypeId) -> Self

Converts to this type from the input type.
Source§

impl From<TypeId> for TypeId

Source§

fn from(value: TypeId) -> Self

Converts to this type from the input type.
Source§

impl Hash for TypeId

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for TypeId

Source§

fn cmp(&self, other: &TypeId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq<TypeId> for TypeId

Source§

fn eq(&self, other: &TypeId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq for TypeId

Source§

fn eq(&self, other: &TypeId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for TypeId

Source§

fn partial_cmp(&self, other: &TypeId) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Copy for TypeId

Source§

impl Eq for TypeId

Source§

impl StructuralPartialEq for TypeId

Auto Trait Implementations§

§

impl Freeze for TypeId

§

impl RefUnwindSafe for TypeId

§

impl Send for TypeId

§

impl Sync for TypeId

§

impl Unpin for TypeId

§

impl UnwindSafe for TypeId

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 = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.