pub struct CardResponse<R> {
pub response: Response,
pub inner: R,
}Expand description
Response from showing a card
Fields§
§response: ResponseThe interaction response for the card
inner: RThe result from the content closure
Implementations§
Auto Trait Implementations§
impl<R> Freeze for CardResponse<R>where
R: Freeze,
impl<R> !RefUnwindSafe for CardResponse<R>
impl<R> Send for CardResponse<R>where
R: Send,
impl<R> Sync for CardResponse<R>where
R: Sync,
impl<R> Unpin for CardResponse<R>where
R: Unpin,
impl<R> UnsafeUnpin for CardResponse<R>where
R: UnsafeUnpin,
impl<R> !UnwindSafe for CardResponse<R>
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