pub struct FnSig {
pub async_: bool,
pub unsafe_: bool,
pub private: bool,
pub use_item_name: bool,
pub generics: Option<String>,
pub self_arg: Option<String>,
pub self_is_first_param: bool,
}
Fields§
§async_: bool
§unsafe_: bool
§private: bool
§use_item_name: bool
§generics: Option<String>
§self_arg: Option<String>
§self_is_first_param: bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FnSig
impl RefUnwindSafe for FnSig
impl Send for FnSig
impl Sync for FnSig
impl Unpin for FnSig
impl UnwindSafe for FnSig
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