pub struct FnSig<'a> {
pub bound_lifetimes: u64,
pub is_unsafe: bool,
pub abi: Option<Abi<'a>>,
pub argument_types: Vec<Rc<Type<'a>>>,
pub return_type: Rc<Type<'a>>,
}Fields§
§bound_lifetimes: u64§is_unsafe: bool§abi: Option<Abi<'a>>§argument_types: Vec<Rc<Type<'a>>>§return_type: Rc<Type<'a>>Implementations§
Trait Implementations§
Source§impl<'a> Ord for FnSig<'a>
impl<'a> Ord for FnSig<'a>
Source§impl<'a> PartialOrd for FnSig<'a>
impl<'a> PartialOrd for FnSig<'a>
impl<'a> Eq for FnSig<'a>
impl<'a> StructuralPartialEq for FnSig<'a>
Auto Trait Implementations§
impl<'a> Freeze for FnSig<'a>
impl<'a> RefUnwindSafe for FnSig<'a>
impl<'a> !Send for FnSig<'a>
impl<'a> !Sync for FnSig<'a>
impl<'a> Unpin for FnSig<'a>
impl<'a> UnwindSafe for FnSig<'a>
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