MCPcopy Index your code
hub / github.com/SoftbearStudios/bitcode / NonStaticAny

Interface NonStaticAny

src/buffer.rs:86–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84fn non_static_type_id<T: ?Sized>() -> TypeId {
85 use std::marker::PhantomData;
86 trait NonStaticAny {
87 fn get_type_id(&self) -> TypeId
88 where
89 Self: 'static;
90 }
91 impl<T: ?Sized> NonStaticAny for PhantomData<T> {
92 fn get_type_id(&self) -> TypeId
93 where

Callers

nothing calls this directly

Implementers 1

non_static_type_idsrc/buffer.rs

Calls

no outgoing calls

Tested by

no test coverage detected