pub struct LocalReviewCommit {
pub sha: String,
pub title: String,
pub author_name: String,
pub author_email: String,
pub authored_at: String,
pub session_ids: Vec<String>,
}Expand description
Commit row in a local review bundle.
Fields§
§sha: String§title: String§session_ids: Vec<String>Trait Implementations§
Source§impl Clone for LocalReviewCommit
impl Clone for LocalReviewCommit
Source§fn clone(&self) -> LocalReviewCommit
fn clone(&self) -> LocalReviewCommit
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 LocalReviewCommit
impl Debug for LocalReviewCommit
Source§impl<'de> Deserialize<'de> for LocalReviewCommit
impl<'de> Deserialize<'de> for LocalReviewCommit
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 LocalReviewCommit
impl RefUnwindSafe for LocalReviewCommit
impl Send for LocalReviewCommit
impl Sync for LocalReviewCommit
impl Unpin for LocalReviewCommit
impl UnsafeUnpin for LocalReviewCommit
impl UnwindSafe for LocalReviewCommit
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