pub struct Author {
pub name: Option<&'static str>,
pub addresses: &'static [&'static str],
pub profiles: &'static [Profile],
}Expand description
Author/creator of a puzzle collection.
Fields§
§name: Option<&'static str>Author’s name or pseudonym (None for anonymous).
addresses: &'static [&'static str]Addresses that initially funded the puzzle(s).
profiles: &'static [Profile]Profile links.
Trait Implementations§
impl Eq for Author
impl StructuralPartialEq for Author
Auto Trait Implementations§
impl Freeze for Author
impl RefUnwindSafe for Author
impl Send for Author
impl Sync for Author
impl Unpin for Author
impl UnwindSafe for Author
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