pub struct WolframCall {
pub head: Box<WolframExpression>,
pub arguments: Vec<WolframExpression>,
}Expand description
Wolfram 函数调用 (e.g., f[x, y])
Fields§
§head: Box<WolframExpression>§arguments: Vec<WolframExpression>Trait Implementations§
Source§impl Clone for WolframCall
impl Clone for WolframCall
Source§fn clone(&self) -> WolframCall
fn clone(&self) -> WolframCall
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 moreAuto Trait Implementations§
impl Freeze for WolframCall
impl RefUnwindSafe for WolframCall
impl Send for WolframCall
impl Sync for WolframCall
impl Unpin for WolframCall
impl UnwindSafe for WolframCall
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