pub struct Brick<T> {
pub title: String,
pub input: T,
pub expcheck: Box<dyn Fn(T) -> ExpResult + 'static>,
}
Fields§
§title: String
§input: T
§expcheck: Box<dyn Fn(T) -> ExpResult + 'static>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Brick<T>where
T: Freeze,
impl<T> !RefUnwindSafe for Brick<T>
impl<T> !Send for Brick<T>
impl<T> !Sync for Brick<T>
impl<T> Unpin for Brick<T>where
T: Unpin,
impl<T> !UnwindSafe for Brick<T>
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