pub struct LinkedinUser {
pub id: String,
pub first_name: String,
pub last_name: String,
pub profile_picture: Option<String>,
}
Fields§
§id: String
§first_name: String
§last_name: String
§profile_picture: Option<String>
Trait Implementations§
Source§impl Clone for LinkedinUser
impl Clone for LinkedinUser
Source§fn clone(&self) -> LinkedinUser
fn clone(&self) -> LinkedinUser
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for LinkedinUser
impl RefUnwindSafe for LinkedinUser
impl Send for LinkedinUser
impl Sync for LinkedinUser
impl Unpin for LinkedinUser
impl UnwindSafe for LinkedinUser
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