pub struct JiraDevRepository {
pub name: String,
pub url: String,
pub commits: Vec<JiraDevCommit>,
}Expand description
A repository from Jira’s DevStatus API.
Fields§
§name: StringRepository name (e.g., “org/repo”).
url: StringURL to the repository.
commits: Vec<JiraDevCommit>Commits linked to this issue in the repository.
Trait Implementations§
Source§impl Clone for JiraDevRepository
impl Clone for JiraDevRepository
Source§fn clone(&self) -> JiraDevRepository
fn clone(&self) -> JiraDevRepository
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 JiraDevRepository
impl Debug for JiraDevRepository
Auto Trait Implementations§
impl Freeze for JiraDevRepository
impl RefUnwindSafe for JiraDevRepository
impl Send for JiraDevRepository
impl Sync for JiraDevRepository
impl Unpin for JiraDevRepository
impl UnsafeUnpin for JiraDevRepository
impl UnwindSafe for JiraDevRepository
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