pub struct GitStatus {
pub id: String,
pub details: Option<GitDetails>,
}
Expand description
The result of a request for the git status.
If the request was inside a git reposity, details
will contain a
GitDetails
with the results
Fields§
§id: String
Request id. The same as the first field in the request.
details: Option<GitDetails>
The inner responce.
Trait Implementations§
impl StructuralPartialEq for GitStatus
Auto Trait Implementations§
impl Freeze for GitStatus
impl RefUnwindSafe for GitStatus
impl Send for GitStatus
impl Sync for GitStatus
impl Unpin for GitStatus
impl UnwindSafe for GitStatus
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