pub struct Solver {
pub name: Option<&'static str>,
pub addresses: &'static [&'static str],
pub profiles: &'static [Profile],
}Expand description
Information about who solved a puzzle.
Fields§
§name: Option<&'static str>Solver’s name or pseudonym (if known).
addresses: &'static [&'static str]Addresses that claimed the funds.
profiles: &'static [Profile]Profile links.
Trait Implementations§
impl Eq for Solver
impl StructuralPartialEq for Solver
Auto Trait Implementations§
impl Freeze for Solver
impl RefUnwindSafe for Solver
impl Send for Solver
impl Sync for Solver
impl Unpin for Solver
impl UnwindSafe for Solver
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