pub struct BindExpression {
pub value: Box<ILExpression>,
pub body: Box<ILExpression>,
}
Fields§
§value: Box<ILExpression>
§body: Box<ILExpression>
Trait Implementations§
Source§impl Clone for BindExpression
impl Clone for BindExpression
Source§fn clone(&self) -> BindExpression
fn clone(&self) -> BindExpression
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 BindExpression
impl Debug for BindExpression
Source§impl<'de> Deserialize<'de> for BindExpression
impl<'de> Deserialize<'de> for BindExpression
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 PartialEq for BindExpression
impl PartialEq for BindExpression
Source§impl Serialize for BindExpression
impl Serialize for BindExpression
impl StructuralPartialEq for BindExpression
Auto Trait Implementations§
impl Freeze for BindExpression
impl RefUnwindSafe for BindExpression
impl Send for BindExpression
impl Sync for BindExpression
impl Unpin for BindExpression
impl UnwindSafe for BindExpression
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