pub struct Signature {
pub kind: &'static str,
pub name: String,
pub params: String,
pub return_type: String,
pub is_async: bool,
pub is_exported: bool,
pub indent: usize,
}Fields§
§kind: &'static str§name: String§params: String§return_type: String§is_async: bool§is_exported: bool§indent: usizeImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Signature
impl RefUnwindSafe for Signature
impl Send for Signature
impl Sync for Signature
impl Unpin for Signature
impl UnsafeUnpin for Signature
impl UnwindSafe for Signature
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