pub struct Answers {
pub part1: String,
pub part2: Option<String>,
}Expand description
The answers a solution printed.
Fields§
§part1: StringThe part one answer.
part2: Option<String>The part two answer, if the solution printed one.
Implementations§
Trait Implementations§
impl Eq for Answers
impl StructuralPartialEq for Answers
Auto Trait Implementations§
impl Freeze for Answers
impl RefUnwindSafe for Answers
impl Send for Answers
impl Sync for Answers
impl Unpin for Answers
impl UnsafeUnpin for Answers
impl UnwindSafe for Answers
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.