pub struct BinaryData {
pub left: Box<Expr>,
pub operator: Token,
pub right: Box<Expr>,
}Expand description
Represents a binary expression’s data in the language.
Fields§
§left: Box<Expr>§operator: Token§right: Box<Expr>Trait Implementations§
Source§impl Clone for BinaryData
impl Clone for BinaryData
Source§fn clone(&self) -> BinaryData
fn clone(&self) -> BinaryData
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 BinaryData
impl Debug for BinaryData
Source§impl PartialEq for BinaryData
impl PartialEq for BinaryData
impl Eq for BinaryData
impl StructuralPartialEq for BinaryData
Auto Trait Implementations§
impl Freeze for BinaryData
impl RefUnwindSafe for BinaryData
impl Send for BinaryData
impl Sync for BinaryData
impl Unpin for BinaryData
impl UnwindSafe for BinaryData
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