#[repr(C)]pub struct GeneratedFunction {
pub name: *const c_char,
pub signature: *const c_char,
pub arg_count: u32,
pub id: u32,
}Expand description
Descriptor for a generated math function (matches C++ GeneratedFunction)
Fields§
§name: *const c_char§signature: *const c_char§arg_count: u32§id: u32Trait Implementations§
Source§impl Clone for GeneratedFunction
impl Clone for GeneratedFunction
Source§fn clone(&self) -> GeneratedFunction
fn clone(&self) -> GeneratedFunction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GeneratedFunction
Auto Trait Implementations§
impl !Send for GeneratedFunction
impl !Sync for GeneratedFunction
impl Freeze for GeneratedFunction
impl RefUnwindSafe for GeneratedFunction
impl Unpin for GeneratedFunction
impl UnsafeUnpin for GeneratedFunction
impl UnwindSafe for GeneratedFunction
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