pub struct NewContributor {
pub first_name: Option<String>,
pub last_name: String,
pub full_name: String,
pub orcid: Option<String>,
pub website: Option<String>,
}Fields§
§first_name: Option<String>§last_name: String§full_name: String§orcid: Option<String>§website: Option<String>Auto Trait Implementations§
impl Freeze for NewContributor
impl RefUnwindSafe for NewContributor
impl Send for NewContributor
impl Sync for NewContributor
impl Unpin for NewContributor
impl UnwindSafe for NewContributor
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