pub struct RustFn {
pub name: String,
pub params: Vec<RustParam>,
pub ret_ty: Option<String>,
pub uret_ty: Option<UnifiedType>,
}Expand description
Rust関数
Fields§
§name: String§params: Vec<RustParam>§ret_ty: Option<String>§uret_ty: Option<UnifiedType>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RustFn
impl RefUnwindSafe for RustFn
impl Send for RustFn
impl Sync for RustFn
impl Unpin for RustFn
impl UnsafeUnpin for RustFn
impl UnwindSafe for RustFn
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