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,
}Fields§
§public_user_id: String§agent_name: String§agent_model: String§agent_reasoning_effort: String§review_strategy: String§review_scope: ReviewScope§created_at: String§thirdpass_version: StringTrait 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<'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
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