pub struct NodeSelector {
pub node_selector_terms: Option<Vec<NodeSelectorTerm>>,
}Expand description
A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms. +structType=atomic
Fields§
§node_selector_terms: Option<Vec<NodeSelectorTerm>>Required. A list of node selector terms. The terms are ORed.
Implementations§
Source§impl NodeSelector
impl NodeSelector
pub fn new() -> NodeSelector
Trait Implementations§
Source§impl Clone for NodeSelector
impl Clone for NodeSelector
Source§fn clone(&self) -> NodeSelector
fn clone(&self) -> NodeSelector
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 NodeSelector
impl Debug for NodeSelector
Source§impl<'de> Deserialize<'de> for NodeSelector
impl<'de> Deserialize<'de> for NodeSelector
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 FromStr for NodeSelector
Converts Query Parameters representation (style=form, explode=false) to a NodeSelector value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for NodeSelector
Converts Query Parameters representation (style=form, explode=false) to a NodeSelector value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl PartialEq for NodeSelector
impl PartialEq for NodeSelector
Source§impl Serialize for NodeSelector
impl Serialize for NodeSelector
Source§impl ToString for NodeSelector
Converts the NodeSelector value to the Query Parameters representation (style=form, explode=false)
specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde serializer
impl ToString for NodeSelector
Converts the NodeSelector value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer
Source§impl Validate for NodeSelector
impl Validate for NodeSelector
Source§impl<'v_a> ValidateArgs<'v_a> for NodeSelector
impl<'v_a> ValidateArgs<'v_a> for NodeSelector
impl StructuralPartialEq for NodeSelector
Auto Trait Implementations§
impl Freeze for NodeSelector
impl RefUnwindSafe for NodeSelector
impl Send for NodeSelector
impl Sync for NodeSelector
impl Unpin for NodeSelector
impl UnwindSafe for NodeSelector
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