pub enum ChildId {
Cell(CellId),
Primitive(PrimitiveId),
}
Expand description
The ID of an instance’s child.
Variants§
Cell(CellId)
A child cell.
Primitive(PrimitiveId)
A child primitive.
The contents of instance’s with a child primitive are opaque to SCIR.
Implementations§
source§impl ChildId
impl ChildId
sourcepub fn unwrap_cell(self) -> CellId
pub fn unwrap_cell(self) -> CellId
Returns the value contained in this variant.
§Panics
Panics if the enum value is not of the expected variant.
sourcepub fn get_cell(&self) -> Option<&CellId>
pub fn get_cell(&self) -> Option<&CellId>
Returns a reference to the value contained in this variant.
Returns None
if the enum value is not of the expected variant.
sourcepub fn into_cell(self) -> Option<CellId>
pub fn into_cell(self) -> Option<CellId>
Returns the value contained in this variant.
Returns None
if the enum value is not of the expected variant.
sourcepub fn unwrap_primitive(self) -> PrimitiveId
pub fn unwrap_primitive(self) -> PrimitiveId
Returns the value contained in this variant.
§Panics
Panics if the enum value is not of the expected variant.
sourcepub fn get_primitive(&self) -> Option<&PrimitiveId>
pub fn get_primitive(&self) -> Option<&PrimitiveId>
Returns a reference to the value contained in this variant.
Returns None
if the enum value is not of the expected variant.
sourcepub fn into_primitive(self) -> Option<PrimitiveId>
pub fn into_primitive(self) -> Option<PrimitiveId>
Returns the value contained in this variant.
Returns None
if the enum value is not of the expected variant.
sourcepub fn is_primitive(&self) -> bool
pub fn is_primitive(&self) -> bool
Returns true if this value is the expected variant.
Trait Implementations§
source§impl<'de> Deserialize<'de> for ChildId
impl<'de> Deserialize<'de> for ChildId
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>,
source§impl From<PrimitiveId> for ChildId
impl From<PrimitiveId> for ChildId
source§fn from(value: PrimitiveId) -> Self
fn from(value: PrimitiveId) -> Self
source§impl Ord for ChildId
impl Ord for ChildId
source§impl PartialEq for ChildId
impl PartialEq for ChildId
source§impl PartialOrd for ChildId
impl PartialOrd for ChildId
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moreimpl Copy for ChildId
impl Eq for ChildId
impl StructuralPartialEq for ChildId
Auto Trait Implementations§
impl RefUnwindSafe for ChildId
impl Send for ChildId
impl Sync for ChildId
impl Unpin for ChildId
impl UnwindSafe for ChildId
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
§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
§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
key
and return true
if they are equal.