pub struct ReleasePipelineFilter {
pub id: Option<Box<IDComparator>>,
pub created_at: Option<Box<DateComparator>>,
pub updated_at: Option<Box<DateComparator>>,
pub and: Option<Vec<Box<ReleasePipelineFilter>>>,
pub or: Option<Vec<Box<ReleasePipelineFilter>>>,
}Expand description
ALPHA Release pipeline filtering options.
Fields§
§id: Option<Box<IDComparator>>Comparator for the identifier.
created_at: Option<Box<DateComparator>>Comparator for the created at date.
updated_at: Option<Box<DateComparator>>Comparator for the updated at date.
and: Option<Vec<Box<ReleasePipelineFilter>>>Compound filters, all of which need to be matched by the pipeline.
or: Option<Vec<Box<ReleasePipelineFilter>>>Compound filters, one of which need to be matched by the pipeline.
Trait Implementations§
Source§impl Clone for ReleasePipelineFilter
impl Clone for ReleasePipelineFilter
Source§fn clone(&self) -> ReleasePipelineFilter
fn clone(&self) -> ReleasePipelineFilter
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 ReleasePipelineFilter
impl Debug for ReleasePipelineFilter
Source§impl Default for ReleasePipelineFilter
impl Default for ReleasePipelineFilter
Source§fn default() -> ReleasePipelineFilter
fn default() -> ReleasePipelineFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleasePipelineFilter
impl<'de> Deserialize<'de> for ReleasePipelineFilter
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
Auto Trait Implementations§
impl Freeze for ReleasePipelineFilter
impl RefUnwindSafe for ReleasePipelineFilter
impl Send for ReleasePipelineFilter
impl Sync for ReleasePipelineFilter
impl Unpin for ReleasePipelineFilter
impl UnwindSafe for ReleasePipelineFilter
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