pub struct LocalReviewBundle {
pub review_id: String,
pub generated_at: String,
pub pr: LocalReviewPrMeta,
pub commits: Vec<LocalReviewCommit>,
pub sessions: Vec<LocalReviewSession>,
}Expand description
Local review bundle generated from a PR range.
Fields§
§review_id: String§generated_at: String§pr: LocalReviewPrMeta§commits: Vec<LocalReviewCommit>§sessions: Vec<LocalReviewSession>Trait Implementations§
Source§impl Clone for LocalReviewBundle
impl Clone for LocalReviewBundle
Source§fn clone(&self) -> LocalReviewBundle
fn clone(&self) -> LocalReviewBundle
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 LocalReviewBundle
impl Debug for LocalReviewBundle
Source§impl<'de> Deserialize<'de> for LocalReviewBundle
impl<'de> Deserialize<'de> for LocalReviewBundle
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 LocalReviewBundle
impl RefUnwindSafe for LocalReviewBundle
impl Send for LocalReviewBundle
impl Sync for LocalReviewBundle
impl Unpin for LocalReviewBundle
impl UnsafeUnpin for LocalReviewBundle
impl UnwindSafe for LocalReviewBundle
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