pub struct ParenthesizedGenericArguments {
pub paren_token: Paren,
pub inputs: Punctuated<Type, Comma>,
pub output: ReturnType,
}Expand description
Arguments of a function path segment: the (A, B) -> C in Fn(A,B) -> C.
Fields§
§paren_token: Paren§inputs: Punctuated<Type, Comma>(A, B)
output: ReturnTypeC
Auto Trait Implementations§
impl Freeze for ParenthesizedGenericArguments
impl RefUnwindSafe for ParenthesizedGenericArguments
impl !Send for ParenthesizedGenericArguments
impl !Sync for ParenthesizedGenericArguments
impl Unpin for ParenthesizedGenericArguments
impl UnwindSafe for ParenthesizedGenericArguments
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