pub struct App<H> {
pub head: H,
pub args: Vec<Self>,
}Expand description
Application of applications to a head.
Fields§
§head: Hhead of the application
args: Vec<Self>arguments applied to the head (which are again applications)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<H> Freeze for App<H>where
H: Freeze,
impl<H> RefUnwindSafe for App<H>where
H: RefUnwindSafe,
impl<H> Send for App<H>where
H: Send,
impl<H> Sync for App<H>where
H: Sync,
impl<H> Unpin for App<H>where
H: Unpin,
impl<H> UnsafeUnpin for App<H>where
H: UnsafeUnpin,
impl<H> UnwindSafe for App<H>where
H: UnwindSafe,
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