pub struct TaskCommentAuthor {
pub id: String,
pub name: String,
pub email: String,
pub profile_photo: Option<Option<String>>,
}Fields§
§id: String§name: String§email: String§profile_photo: Option<Option<String>>Implementations§
Trait Implementations§
Source§impl Clone for TaskCommentAuthor
impl Clone for TaskCommentAuthor
Source§fn clone(&self) -> TaskCommentAuthor
fn clone(&self) -> TaskCommentAuthor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TaskCommentAuthor
impl Debug for TaskCommentAuthor
Source§impl Default for TaskCommentAuthor
impl Default for TaskCommentAuthor
Source§fn default() -> TaskCommentAuthor
fn default() -> TaskCommentAuthor
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskCommentAuthor
impl<'de> Deserialize<'de> for TaskCommentAuthor
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TaskCommentAuthor
impl PartialEq for TaskCommentAuthor
Source§fn eq(&self, other: &TaskCommentAuthor) -> bool
fn eq(&self, other: &TaskCommentAuthor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TaskCommentAuthor
impl Serialize for TaskCommentAuthor
impl StructuralPartialEq for TaskCommentAuthor
Auto Trait Implementations§
impl Freeze for TaskCommentAuthor
impl RefUnwindSafe for TaskCommentAuthor
impl Send for TaskCommentAuthor
impl Sync for TaskCommentAuthor
impl Unpin for TaskCommentAuthor
impl UnsafeUnpin for TaskCommentAuthor
impl UnwindSafe for TaskCommentAuthor
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