pub struct DeviceConstraint {
pub match_attribute: Option<String>,
pub requests: Option<Vec<String>>,
}
Expand description
DeviceConstraint must have exactly one field set besides Requests.
Fields§
§match_attribute: Option<String>
MatchAttribute requires that all devices in question have this attribute and that its type and value are the same across those devices.
For example, if you specified “dra.example.com/numa” (a hypothetical example!), then only devices in the same NUMA node will be chosen. A device which does not have that attribute will not be chosen. All devices should use a value of the same type for this attribute because that is part of its specification, but if one device doesn’t, then it also will not be chosen.
Must include the domain qualifier.
requests: Option<Vec<String>>
Requests is a list of the one or more requests in this claim which must co-satisfy this constraint. If a request is fulfilled by multiple devices, then all of the devices must satisfy the constraint. If this is not specified, this constraint applies to all requests in this claim.
Trait Implementations§
Source§impl Clone for DeviceConstraint
impl Clone for DeviceConstraint
Source§fn clone(&self) -> DeviceConstraint
fn clone(&self) -> DeviceConstraint
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DeviceConstraint
impl Debug for DeviceConstraint
Source§impl DeepMerge for DeviceConstraint
impl DeepMerge for DeviceConstraint
Source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
other
into self
.Source§impl Default for DeviceConstraint
impl Default for DeviceConstraint
Source§fn default() -> DeviceConstraint
fn default() -> DeviceConstraint
Source§impl<'de> Deserialize<'de> for DeviceConstraint
impl<'de> Deserialize<'de> for DeviceConstraint
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>,
Source§impl JsonSchema for DeviceConstraint
impl JsonSchema for DeviceConstraint
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn json_schema(__gen: &mut SchemaGenerator) -> Schema
fn json_schema(__gen: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read more