pub struct GithubBackfillResult {
pub created: Option<i32>,
pub failed: Option<i32>,
pub issues: Option<i32>,
pub repos: Option<i32>,
pub truncated: Option<bool>,
pub updated: Option<i32>,
}Fields§
§created: Option<i32>Created is how many native issues this pass created.
failed: Option<i32>Failed is how many repos or issues errored; the pass continues past each.
issues: Option<i32>Issues is how many upstream issues were seen.
repos: Option<i32>Repos is how many granted repos were walked (archived/disabled are skipped).
truncated: Option<bool>Truncated is set when the time budget or the issue cap stopped the pass early. Re-run to continue — the mirror is idempotent by ExtRef, so nothing duplicates.
updated: Option<i32>Updated is how many existing native issues this pass refreshed.
Implementations§
Source§impl GithubBackfillResult
impl GithubBackfillResult
pub fn new() -> GithubBackfillResult
Trait Implementations§
Source§impl Clone for GithubBackfillResult
impl Clone for GithubBackfillResult
Source§fn clone(&self) -> GithubBackfillResult
fn clone(&self) -> GithubBackfillResult
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 GithubBackfillResult
impl Debug for GithubBackfillResult
Source§impl Default for GithubBackfillResult
impl Default for GithubBackfillResult
Source§fn default() -> GithubBackfillResult
fn default() -> GithubBackfillResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GithubBackfillResult
impl<'de> Deserialize<'de> for GithubBackfillResult
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
Source§impl PartialEq for GithubBackfillResult
impl PartialEq for GithubBackfillResult
Source§impl Serialize for GithubBackfillResult
impl Serialize for GithubBackfillResult
impl StructuralPartialEq for GithubBackfillResult
Auto Trait Implementations§
impl Freeze for GithubBackfillResult
impl RefUnwindSafe for GithubBackfillResult
impl Send for GithubBackfillResult
impl Sync for GithubBackfillResult
impl Unpin for GithubBackfillResult
impl UnsafeUnpin for GithubBackfillResult
impl UnwindSafe for GithubBackfillResult
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