pub struct SessionReviewNextContext {
pub target: String,
pub active_prompt_targets: Vec<String>,
pub last_verification: SessionReviewVerificationState,
pub touched_files: Vec<String>,
pub touched_symbols: Vec<String>,
pub unresolved_failures: Vec<SessionReviewFailure>,
pub agent_doc_queue: Option<SessionReviewAgentDocQueueProfile>,
pub prompt_cache_health: Option<SessionReviewPromptCacheHealth>,
pub next_digest_commands: Vec<String>,
}Fields§
§target: String§active_prompt_targets: Vec<String>§last_verification: SessionReviewVerificationState§touched_files: Vec<String>§touched_symbols: Vec<String>§unresolved_failures: Vec<SessionReviewFailure>§agent_doc_queue: Option<SessionReviewAgentDocQueueProfile>§prompt_cache_health: Option<SessionReviewPromptCacheHealth>§next_digest_commands: Vec<String>Trait Implementations§
Source§impl Clone for SessionReviewNextContext
impl Clone for SessionReviewNextContext
Source§fn clone(&self) -> SessionReviewNextContext
fn clone(&self) -> SessionReviewNextContext
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 SessionReviewNextContext
impl Debug for SessionReviewNextContext
Source§impl Serialize for SessionReviewNextContext
impl Serialize for SessionReviewNextContext
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for SessionReviewNextContext
impl RefUnwindSafe for SessionReviewNextContext
impl Send for SessionReviewNextContext
impl Sync for SessionReviewNextContext
impl Unpin for SessionReviewNextContext
impl UnsafeUnpin for SessionReviewNextContext
impl UnwindSafe for SessionReviewNextContext
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