pub struct GithubBackfillIn {
pub state: Option<String>,
}Fields§
§state: Option<String>State is the GitHub issue state to walk: "open" (the default), "closed" or "all". Anything else is a 400.
Implementations§
Source§impl GithubBackfillIn
impl GithubBackfillIn
pub fn new() -> GithubBackfillIn
Trait Implementations§
Source§impl Clone for GithubBackfillIn
impl Clone for GithubBackfillIn
Source§fn clone(&self) -> GithubBackfillIn
fn clone(&self) -> GithubBackfillIn
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 GithubBackfillIn
impl Debug for GithubBackfillIn
Source§impl Default for GithubBackfillIn
impl Default for GithubBackfillIn
Source§fn default() -> GithubBackfillIn
fn default() -> GithubBackfillIn
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GithubBackfillIn
impl<'de> Deserialize<'de> for GithubBackfillIn
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 GithubBackfillIn
impl PartialEq for GithubBackfillIn
Source§impl Serialize for GithubBackfillIn
impl Serialize for GithubBackfillIn
impl StructuralPartialEq for GithubBackfillIn
Auto Trait Implementations§
impl Freeze for GithubBackfillIn
impl RefUnwindSafe for GithubBackfillIn
impl Send for GithubBackfillIn
impl Sync for GithubBackfillIn
impl Unpin for GithubBackfillIn
impl UnsafeUnpin for GithubBackfillIn
impl UnwindSafe for GithubBackfillIn
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