pub struct ReviewAuthor {
pub display_name: Option<String>,
}Expand description
Author of this review.
This type is not used in any activity, and only used as part of another schema.
Fields§
§display_name: Option<String>Name of this person.
Trait Implementations§
Source§impl Clone for ReviewAuthor
impl Clone for ReviewAuthor
Source§fn clone(&self) -> ReviewAuthor
fn clone(&self) -> ReviewAuthor
Returns a duplicate of the value. Read more
1.0.0 · 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 ReviewAuthor
impl Debug for ReviewAuthor
Source§impl Default for ReviewAuthor
impl Default for ReviewAuthor
Source§fn default() -> ReviewAuthor
fn default() -> ReviewAuthor
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReviewAuthor
impl<'de> Deserialize<'de> for ReviewAuthor
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 Serialize for ReviewAuthor
impl Serialize for ReviewAuthor
impl NestedType for ReviewAuthor
impl Part for ReviewAuthor
Auto Trait Implementations§
impl Freeze for ReviewAuthor
impl RefUnwindSafe for ReviewAuthor
impl Send for ReviewAuthor
impl Sync for ReviewAuthor
impl Unpin for ReviewAuthor
impl UnwindSafe for ReviewAuthor
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