pub struct JuliaFunction {
pub name: String,
pub body: Vec<JuliaStatement>,
}Expand description
Julia 函数定义
Fields§
§name: String§body: Vec<JuliaStatement>Trait Implementations§
Source§impl Clone for JuliaFunction
impl Clone for JuliaFunction
Source§fn clone(&self) -> JuliaFunction
fn clone(&self) -> JuliaFunction
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 JuliaFunction
impl Debug for JuliaFunction
Source§impl<'de> Deserialize<'de> for JuliaFunction
impl<'de> Deserialize<'de> for JuliaFunction
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 JuliaFunction
impl PartialEq for JuliaFunction
Source§impl Serialize for JuliaFunction
impl Serialize for JuliaFunction
impl StructuralPartialEq for JuliaFunction
Auto Trait Implementations§
impl Freeze for JuliaFunction
impl RefUnwindSafe for JuliaFunction
impl Send for JuliaFunction
impl Sync for JuliaFunction
impl Unpin for JuliaFunction
impl UnwindSafe for JuliaFunction
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