Enum VariantId
pub enum VariantId {
EnumVariantId(EnumVariantId),
StructId(StructId),
UnionId(UnionId),
}Variants§
Implementations§
§impl VariantId
impl VariantId
pub fn from_non_enum(adt_id: AdtId) -> Option<VariantId>
pub fn fields(self, db: &(dyn SourceDatabase + 'static)) -> &VariantFields
pub fn fields_with_source_map( self, db: &(dyn SourceDatabase + 'static), ) -> (&VariantFields, &ExpressionStoreSourceMap)
pub fn file_id(self, db: &(dyn SourceDatabase + 'static)) -> HirFileId
pub fn adt_id(self, db: &(dyn SourceDatabase + 'static)) -> AdtId
Trait Implementations§
Source§impl ChildBySource for VariantId
impl ChildBySource for VariantId
fn child_by_source_to( &self, db: &dyn SourceDatabase, res: &mut DynMap, _: HirFileId, )
fn child_by_source(&self, db: &dyn SourceDatabase, file_id: HirFileId) -> DynMap
Source§impl From<VariantId> for ChildContainer
impl From<VariantId> for ChildContainer
Source§fn from(it: VariantId) -> ChildContainer
fn from(it: VariantId) -> ChildContainer
Converts to this type from the input type.
§impl HasChildSource<Idx<FieldData>> for VariantId
impl HasChildSource<Idx<FieldData>> for VariantId
type Value = Either<TupleField, RecordField>
fn child_source( &self, db: &(dyn SourceDatabase + 'static), ) -> InFileWrapper<HirFileId, ArenaMap<Idx<FieldData>, <VariantId as HasChildSource<Idx<FieldData>>>::Value>>
§impl Ord for VariantId
impl Ord for VariantId
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialOrd for VariantId
impl PartialOrd for VariantId
impl Copy for VariantId
impl Eq for VariantId
impl StructuralPartialEq for VariantId
Auto Trait Implementations§
impl Freeze for VariantId
impl RefUnwindSafe for VariantId
impl Send for VariantId
impl Sync for VariantId
impl Unpin for VariantId
impl UnsafeUnpin for VariantId
impl UnwindSafe for VariantId
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,
§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> HasCrate for Twhere
T: HasModule,
impl<T> HasCrate for Twhere
T: HasModule,
fn krate(&self, db: &(dyn HirDatabase + 'static)) -> Crate
§impl<T> HashEqLike<T> for T
impl<T> HashEqLike<T> for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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