pub struct ConcreteLibfuncId {
pub id: u64,
pub debug_name: Option<SmolStr>,
}
Expand description
The identity of a concrete library function.
Fields§
§id: u64
§debug_name: Option<SmolStr>
Optional name for testing and debugging.
Implementations§
Trait Implementations§
source§impl Clone for ConcreteLibfuncId
impl Clone for ConcreteLibfuncId
source§fn clone(&self) -> ConcreteLibfuncId
fn clone(&self) -> ConcreteLibfuncId
Returns a copy 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 ConcreteLibfuncId
impl Debug for ConcreteLibfuncId
source§impl<'de> Deserialize<'de> for ConcreteLibfuncId
impl<'de> Deserialize<'de> for ConcreteLibfuncId
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for ConcreteLibfuncId
impl Display for ConcreteLibfuncId
source§impl From<&str> for ConcreteLibfuncId
impl From<&str> for ConcreteLibfuncId
source§impl From<SmolStr> for ConcreteLibfuncId
impl From<SmolStr> for ConcreteLibfuncId
source§impl From<String> for ConcreteLibfuncId
impl From<String> for ConcreteLibfuncId
source§impl From<u64> for ConcreteLibfuncId
impl From<u64> for ConcreteLibfuncId
source§impl Hash for ConcreteLibfuncId
impl Hash for ConcreteLibfuncId
source§impl IdAsHashKey for ConcreteLibfuncId
impl IdAsHashKey for ConcreteLibfuncId
source§impl InternKey for ConcreteLibfuncId
impl InternKey for ConcreteLibfuncId
source§fn from_intern_id(salsa_id: InternId) -> Self
fn from_intern_id(salsa_id: InternId) -> Self
Create an instance of the intern-key from a
u32
value.source§fn as_intern_id(&self) -> InternId
fn as_intern_id(&self) -> InternId
Extract the
u32
with which the intern-key was created.source§impl PartialEq for ConcreteLibfuncId
impl PartialEq for ConcreteLibfuncId
source§impl Serialize for ConcreteLibfuncId
impl Serialize for ConcreteLibfuncId
impl Eq for ConcreteLibfuncId
Auto Trait Implementations§
impl Freeze for ConcreteLibfuncId
impl RefUnwindSafe for ConcreteLibfuncId
impl Send for ConcreteLibfuncId
impl Sync for ConcreteLibfuncId
impl Unpin for ConcreteLibfuncId
impl UnwindSafe for ConcreteLibfuncId
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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