pub struct ReviewerResponse {
pub kind: Option<String>,
pub response: Option<String>,
pub reviewer: Option<User>,
}Expand description
A response on an Approval made by a specific Reviewer.
This type is not used in any activity, and only used as part of another schema.
Fields§
§kind: Option<String>This is always drive#reviewerResponse.
response: Option<String>A Reviewer’s Response for the Approval.
reviewer: Option<User>The user that is responsible for this response.
Trait Implementations§
Source§impl Clone for ReviewerResponse
impl Clone for ReviewerResponse
Source§fn clone(&self) -> ReviewerResponse
fn clone(&self) -> ReviewerResponse
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 ReviewerResponse
impl Debug for ReviewerResponse
Source§impl Default for ReviewerResponse
impl Default for ReviewerResponse
Source§fn default() -> ReviewerResponse
fn default() -> ReviewerResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReviewerResponse
impl<'de> Deserialize<'de> for ReviewerResponse
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 ReviewerResponse
impl Serialize for ReviewerResponse
impl Part for ReviewerResponse
Auto Trait Implementations§
impl Freeze for ReviewerResponse
impl RefUnwindSafe for ReviewerResponse
impl Send for ReviewerResponse
impl Sync for ReviewerResponse
impl Unpin for ReviewerResponse
impl UnwindSafe for ReviewerResponse
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