pub struct LocalReviewSemanticSummary {
pub changes: String,
pub auth_security: String,
pub layer_file_changes: Vec<LocalReviewLayerFileChange>,
pub source_kind: String,
pub generation_kind: String,
pub provider: String,
pub model: Option<String>,
pub error: Option<String>,
pub diff_tree: Vec<Value>,
}Expand description
Commit-level semantic summary used when session mappings are weak or absent.
Fields§
§changes: String§auth_security: String§layer_file_changes: Vec<LocalReviewLayerFileChange>§source_kind: String§generation_kind: String§provider: String§model: Option<String>§error: Option<String>§diff_tree: Vec<Value>Trait Implementations§
Source§impl Clone for LocalReviewSemanticSummary
impl Clone for LocalReviewSemanticSummary
Source§fn clone(&self) -> LocalReviewSemanticSummary
fn clone(&self) -> LocalReviewSemanticSummary
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 LocalReviewSemanticSummary
impl Debug for LocalReviewSemanticSummary
Source§impl<'de> Deserialize<'de> for LocalReviewSemanticSummary
impl<'de> Deserialize<'de> for LocalReviewSemanticSummary
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 LocalReviewSemanticSummary
impl RefUnwindSafe for LocalReviewSemanticSummary
impl Send for LocalReviewSemanticSummary
impl Sync for LocalReviewSemanticSummary
impl Unpin for LocalReviewSemanticSummary
impl UnsafeUnpin for LocalReviewSemanticSummary
impl UnwindSafe for LocalReviewSemanticSummary
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