pub struct ListPatchNotesParams {
pub limit: Option<u8>,
pub cursor: Option<String>,
pub target: Option<String>,
pub category: Option<String>,
}Expand description
struct for passing parameters to the method list_patch_notes
Fields§
§limit: Option<u8>The maximum number of patch notes to return.
cursor: Option<String>The cursor returned by the previous request.
target: Option<String>The target used to filter patch notes.
category: Option<String>The category used to filter patch notes.
Trait Implementations§
Source§impl Clone for ListPatchNotesParams
impl Clone for ListPatchNotesParams
Source§fn clone(&self) -> ListPatchNotesParams
fn clone(&self) -> ListPatchNotesParams
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 moreAuto Trait Implementations§
impl Freeze for ListPatchNotesParams
impl RefUnwindSafe for ListPatchNotesParams
impl Send for ListPatchNotesParams
impl Sync for ListPatchNotesParams
impl Unpin for ListPatchNotesParams
impl UnsafeUnpin for ListPatchNotesParams
impl UnwindSafe for ListPatchNotesParams
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