Struct GCInterner

Source
pub struct GCInterner<W, const N: usize = 4, const GC: usize = 0> {
    store: BTreeMap<u64, SmallVec<W, N>>,
}

Fields§

§store: BTreeMap<u64, SmallVec<W, N>>

Implementations§

Source§

impl<W, const N: usize, const GC: usize> GCInterner<W, N, GC>

Source

fn hash<V: Hash + ?Sized>(v: &V) -> u64

Source

pub fn len(&self) -> usize

Source

pub fn is_empty(&self) -> bool

Source§

impl<W: Weak, const N: usize, const GC: usize> GCInterner<W, N, GC>

Source

pub fn gc(&mut self)

Source

pub fn get_or_intern<V>(&mut self, v: V) -> Interned<W::Strong>
where for<'a> &'a W::A: PartialEq<V>, V: Hash + PartialEq + Eq + Into<W::Strong>,

Source

pub fn get<V>(&self, v: &V) -> Option<Interned<W::Strong>>
where for<'a> &'a W::A: PartialEq<V>, V: Hash + PartialEq + Eq,

Source§

impl<T: ?Sized + Hash, const N: usize, const GC: usize> GCInterner<Arc<T>, N, GC>

Source

pub fn gc(&mut self)

Source

pub fn get_or_intern<V>(&mut self, v: V) -> Interned<Arc<T>>
where for<'a> &'a T: PartialEq<V>, V: Hash + PartialEq + Eq + Into<Arc<T>>,

Source

pub fn get<V>(&self, v: &V) -> Option<Interned<Arc<T>>>
where for<'a> &'a T: PartialEq<V>, V: Hash + PartialEq + Eq,

Trait Implementations§

Source§

impl<W, const N: usize, const GC: usize> Default for GCInterner<W, N, GC>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<W, const N: usize, const GC: usize> Freeze for GCInterner<W, N, GC>

§

impl<W, const N: usize, const GC: usize> RefUnwindSafe for GCInterner<W, N, GC>
where W: RefUnwindSafe,

§

impl<W, const N: usize, const GC: usize> Send for GCInterner<W, N, GC>
where W: Send,

§

impl<W, const N: usize, const GC: usize> Sync for GCInterner<W, N, GC>
where W: Sync,

§

impl<W, const N: usize, const GC: usize> Unpin for GCInterner<W, N, GC>

§

impl<W, const N: usize, const GC: usize> UnwindSafe for GCInterner<W, N, GC>
where W: RefUnwindSafe,

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
§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
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
§

impl<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

§

fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,