#[non_exhaustive]pub struct DeliveryPipelineAttribute {
pub id: String,
pub labels: HashMap<String, String>,
/* private fields */
}
Expand description
Contains criteria for selecting DeliveryPipelines.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: String
Optional. ID of the DeliveryPipeline
. The value of this field could be
one of the following:
- The last segment of a pipeline name
- “*”, all delivery pipelines in a location
labels: HashMap<String, String>
DeliveryPipeline labels.
Implementations§
Trait Implementations§
Source§impl Clone for DeliveryPipelineAttribute
impl Clone for DeliveryPipelineAttribute
Source§fn clone(&self) -> DeliveryPipelineAttribute
fn clone(&self) -> DeliveryPipelineAttribute
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 DeliveryPipelineAttribute
impl Debug for DeliveryPipelineAttribute
Source§impl Default for DeliveryPipelineAttribute
impl Default for DeliveryPipelineAttribute
Source§fn default() -> DeliveryPipelineAttribute
fn default() -> DeliveryPipelineAttribute
Returns the “default value” for a type. Read more
Source§impl Message for DeliveryPipelineAttribute
impl Message for DeliveryPipelineAttribute
impl StructuralPartialEq for DeliveryPipelineAttribute
Auto Trait Implementations§
impl Freeze for DeliveryPipelineAttribute
impl RefUnwindSafe for DeliveryPipelineAttribute
impl Send for DeliveryPipelineAttribute
impl Sync for DeliveryPipelineAttribute
impl Unpin for DeliveryPipelineAttribute
impl UnwindSafe for DeliveryPipelineAttribute
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