pub struct BinaryExprData {
pub left: NodeIndex,
pub operator_token: u16,
pub right: NodeIndex,
}Expand description
Data for binary expressions
Fields§
§left: NodeIndex§operator_token: u16§right: NodeIndexTrait Implementations§
Source§impl Clone for BinaryExprData
impl Clone for BinaryExprData
Source§fn clone(&self) -> BinaryExprData
fn clone(&self) -> BinaryExprData
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 BinaryExprData
impl Debug for BinaryExprData
Source§impl<'de> Deserialize<'de> for BinaryExprData
impl<'de> Deserialize<'de> for BinaryExprData
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
Auto Trait Implementations§
impl Freeze for BinaryExprData
impl RefUnwindSafe for BinaryExprData
impl Send for BinaryExprData
impl Sync for BinaryExprData
impl Unpin for BinaryExprData
impl UnsafeUnpin for BinaryExprData
impl UnwindSafe for BinaryExprData
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