pub struct PullListOptions {
pub state: Option<String>,
pub head: Option<String>,
pub base: Option<String>,
pub sort: Option<String>,
pub direction: Option<String>,
pub milestone_number: Option<i32>,
pub labels: Option<String>,
pub page: Option<i32>,
pub per_page: Option<i32>,
}Fields§
§state: Option<String>§head: Option<String>§base: Option<String>§sort: Option<String>§direction: Option<String>§milestone_number: Option<i32>§labels: Option<String>§page: Option<i32>§per_page: Option<i32>Trait Implementations§
Source§impl Clone for PullListOptions
impl Clone for PullListOptions
Source§fn clone(&self) -> PullListOptions
fn clone(&self) -> PullListOptions
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 PullListOptions
impl Debug for PullListOptions
Source§impl Default for PullListOptions
impl Default for PullListOptions
Source§fn default() -> PullListOptions
fn default() -> PullListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PullListOptions
impl RefUnwindSafe for PullListOptions
impl Send for PullListOptions
impl Sync for PullListOptions
impl Unpin for PullListOptions
impl UnwindSafe for PullListOptions
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