pub enum Author {
Verbose(VerboseAuthorDetails),
Anonymous(AnonymousAuthorDetails),
}Expand description
Information about a single author
Variants§
Verbose(VerboseAuthorDetails)
Anonymous(AnonymousAuthorDetails)
Trait Implementations§
source§impl PartialEq<Author> for Author
impl PartialEq<Author> for Author
impl StructuralPartialEq for Author
Auto Trait Implementations§
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