Struct google_plus1::CommentActor
source · pub struct CommentActor {
pub display_name: Option<String>,
pub verification: Option<CommentActorVerification>,
pub url: Option<String>,
pub image: Option<CommentActorImage>,
pub client_specific_actor_info: Option<CommentActorClientSpecificActorInfo>,
pub id: Option<String>,
}Expand description
The person who posted this comment.
This type is not used in any activity, and only used as part of another schema.
Fields§
§display_name: Option<String>The name of this actor, suitable for display.
verification: Option<CommentActorVerification>Verification status of actor.
url: Option<String>A link to the Person resource for this actor.
image: Option<CommentActorImage>The image representation of this actor.
client_specific_actor_info: Option<CommentActorClientSpecificActorInfo>Actor info specific to particular clients.
id: Option<String>The ID of the actor.
Trait Implementations§
source§impl Clone for CommentActor
impl Clone for CommentActor
source§fn clone(&self) -> CommentActor
fn clone(&self) -> CommentActor
Returns a copy 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 CommentActor
impl Debug for CommentActor
source§impl Default for CommentActor
impl Default for CommentActor
source§fn default() -> CommentActor
fn default() -> CommentActor
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CommentActor
impl<'de> Deserialize<'de> for CommentActor
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 CommentActor
impl Serialize for CommentActor
impl NestedType for CommentActor
impl Part for CommentActor
Auto Trait Implementations§
impl Freeze for CommentActor
impl RefUnwindSafe for CommentActor
impl Send for CommentActor
impl Sync for CommentActor
impl Unpin for CommentActor
impl UnwindSafe for CommentActor
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more