pub struct ReleaseListQuery {
pub product: Option<String>,
pub version: Option<String>,
pub status: Option<String>,
pub include_artifacts: Option<bool>,
pub limit: Option<i32>,
pub offset: Option<i32>,
}Fields§
§product: Option<String>§version: Option<String>§status: Option<String>§include_artifacts: Option<bool>§limit: Option<i32>§offset: Option<i32>Trait Implementations§
Source§impl Clone for ReleaseListQuery
impl Clone for ReleaseListQuery
Source§fn clone(&self) -> ReleaseListQuery
fn clone(&self) -> ReleaseListQuery
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 ReleaseListQuery
impl Debug for ReleaseListQuery
Source§impl Default for ReleaseListQuery
impl Default for ReleaseListQuery
Source§fn default() -> ReleaseListQuery
fn default() -> ReleaseListQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseListQuery
impl<'de> Deserialize<'de> for ReleaseListQuery
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 ReleaseListQuery
impl PartialEq for ReleaseListQuery
Source§impl Serialize for ReleaseListQuery
impl Serialize for ReleaseListQuery
impl Eq for ReleaseListQuery
impl StructuralPartialEq for ReleaseListQuery
Auto Trait Implementations§
impl Freeze for ReleaseListQuery
impl RefUnwindSafe for ReleaseListQuery
impl Send for ReleaseListQuery
impl Sync for ReleaseListQuery
impl Unpin for ReleaseListQuery
impl UnwindSafe for ReleaseListQuery
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