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