pub struct PhiArrayNode {
pub phi: P<PhiNode>,
pub elements: Vec<ExprKind>,
}
Expand description
Represents a function call
Fields§
§phi: P<PhiNode>
The phi node that merges the array.
elements: Vec<ExprKind>
The elements in the array
Implementations§
Trait Implementations§
Source§impl Clone for PhiArrayNode
impl Clone for PhiArrayNode
Source§fn clone(&self) -> PhiArrayNode
fn clone(&self) -> PhiArrayNode
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 PhiArrayNode
impl Debug for PhiArrayNode
Source§impl<'de> Deserialize<'de> for PhiArrayNode
impl<'de> Deserialize<'de> for PhiArrayNode
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 From<PhiArrayNode> for ArrayKind
impl From<PhiArrayNode> for ArrayKind
Source§fn from(id: PhiArrayNode) -> Self
fn from(id: PhiArrayNode) -> Self
Converts to this type from the input type.
Source§impl From<PhiArrayNode> for AstKind
impl From<PhiArrayNode> for AstKind
Source§fn from(id: PhiArrayNode) -> Self
fn from(id: PhiArrayNode) -> Self
Converts to this type from the input type.
Source§impl From<PhiArrayNode> for ExprKind
impl From<PhiArrayNode> for ExprKind
Source§fn from(id: PhiArrayNode) -> Self
fn from(id: PhiArrayNode) -> Self
Converts to this type from the input type.
Source§impl From<PhiArrayNode> for P<ArrayKind>
impl From<PhiArrayNode> for P<ArrayKind>
Source§fn from(id: PhiArrayNode) -> Self
fn from(id: PhiArrayNode) -> Self
Converts to this type from the input type.
Source§impl From<PhiArrayNode> for P<AstKind>
impl From<PhiArrayNode> for P<AstKind>
Source§fn from(id: PhiArrayNode) -> Self
fn from(id: PhiArrayNode) -> Self
Converts to this type from the input type.
Source§impl From<PhiArrayNode> for P<ExprKind>
impl From<PhiArrayNode> for P<ExprKind>
Source§fn from(id: PhiArrayNode) -> Self
fn from(id: PhiArrayNode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PhiArrayNode
impl PartialEq for PhiArrayNode
Source§impl Serialize for PhiArrayNode
impl Serialize for PhiArrayNode
impl Eq for PhiArrayNode
Auto Trait Implementations§
impl Freeze for PhiArrayNode
impl RefUnwindSafe for PhiArrayNode
impl Send for PhiArrayNode
impl Sync for PhiArrayNode
impl Unpin for PhiArrayNode
impl UnwindSafe for PhiArrayNode
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<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.