pub struct ConstantSetMeta { /* private fields */ }Expand description
Metadata describing a stored set of constants for a type table.
Implementations§
Source§impl ConstantSetMeta
impl ConstantSetMeta
Sourcepub fn constant_type_id(&self) -> Id
pub fn constant_type_id(&self) -> Id
Identifier of the type table the set belongs to.
Trait Implementations§
Source§impl Clone for ConstantSetMeta
impl Clone for ConstantSetMeta
Source§fn clone(&self) -> ConstantSetMeta
fn clone(&self) -> ConstantSetMeta
Returns a duplicate 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 ConstantSetMeta
impl Debug for ConstantSetMeta
Source§impl Default for ConstantSetMeta
impl Default for ConstantSetMeta
Source§fn default() -> ConstantSetMeta
fn default() -> ConstantSetMeta
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConstantSetMeta
impl RefUnwindSafe for ConstantSetMeta
impl Send for ConstantSetMeta
impl Sync for ConstantSetMeta
impl Unpin for ConstantSetMeta
impl UnwindSafe for ConstantSetMeta
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§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