pub struct ReviewerDetails {
pub public_user_id: String,
pub agent_name: String,
pub agent_model: String,
pub agent_reasoning_effort: String,
pub review_strategy: String,
pub review_scope: ReviewScope,
pub created_at: String,
pub thirdpass_version: String,
}Expand description
Metadata describing the client and agent that produced a review.
Fields§
§public_user_id: StringPublic reviewer identifier shown by the website.
agent_name: StringReview agent executable or provider name.
agent_model: StringReview agent model identifier.
agent_reasoning_effort: StringReview agent reasoning effort or equivalent setting.
review_strategy: StringStrategy identifier used to produce the review.
review_scope: ReviewScopeScope of files covered by the review.
created_at: StringReview creation timestamp serialized by the client.
thirdpass_version: StringThirdpass client version that produced the review.
Trait Implementations§
Source§impl Clone for ReviewerDetails
impl Clone for ReviewerDetails
Source§fn clone(&self) -> ReviewerDetails
fn clone(&self) -> ReviewerDetails
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 ReviewerDetails
impl Debug for ReviewerDetails
Source§impl Default for ReviewerDetails
impl Default for ReviewerDetails
Source§fn default() -> ReviewerDetails
fn default() -> ReviewerDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReviewerDetails
impl<'de> Deserialize<'de> for ReviewerDetails
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 Hash for ReviewerDetails
impl Hash for ReviewerDetails
Source§impl PartialEq for ReviewerDetails
impl PartialEq for ReviewerDetails
Source§fn eq(&self, other: &ReviewerDetails) -> bool
fn eq(&self, other: &ReviewerDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReviewerDetails
impl Serialize for ReviewerDetails
impl Eq for ReviewerDetails
impl StructuralPartialEq for ReviewerDetails
Auto Trait Implementations§
impl Freeze for ReviewerDetails
impl RefUnwindSafe for ReviewerDetails
impl Send for ReviewerDetails
impl Sync for ReviewerDetails
impl Unpin for ReviewerDetails
impl UnsafeUnpin for ReviewerDetails
impl UnwindSafe for ReviewerDetails
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.