pub struct GitHubStatus {
pub refs: u64,
pub issues: u64,
pub comments: u64,
pub pulls: u64,
pub reviews: u64,
pub review_comments: u64,
pub last_sync_ms: Option<i64>,
pub capability: String,
}Fields§
§refs: u64§issues: u64§comments: u64§pulls: u64§reviews: u64§review_comments: u64§last_sync_ms: Option<i64>§capability: StringTrait Implementations§
Source§impl Clone for GitHubStatus
impl Clone for GitHubStatus
Source§fn clone(&self) -> GitHubStatus
fn clone(&self) -> GitHubStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GitHubStatus
impl Debug for GitHubStatus
Auto Trait Implementations§
impl Freeze for GitHubStatus
impl RefUnwindSafe for GitHubStatus
impl Send for GitHubStatus
impl Sync for GitHubStatus
impl Unpin for GitHubStatus
impl UnsafeUnpin for GitHubStatus
impl UnwindSafe for GitHubStatus
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more