pub struct ZigAsyncFn {
pub name: String,
pub params: Vec<(String, String)>,
pub return_type: String,
pub frame_size: Option<usize>,
}Fields§
§name: String§params: Vec<(String, String)>§return_type: String§frame_size: Option<usize>Implementations§
Trait Implementations§
Source§impl Clone for ZigAsyncFn
impl Clone for ZigAsyncFn
Source§fn clone(&self) -> ZigAsyncFn
fn clone(&self) -> ZigAsyncFn
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 ZigAsyncFn
impl RefUnwindSafe for ZigAsyncFn
impl Send for ZigAsyncFn
impl Sync for ZigAsyncFn
impl Unpin for ZigAsyncFn
impl UnsafeUnpin for ZigAsyncFn
impl UnwindSafe for ZigAsyncFn
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