pub struct DeviceRequestAllocationResult {
pub device: String,
pub driver: String,
pub pool: String,
pub request: String,
}
Expand description
DeviceRequestAllocationResult contains the allocation result for one request.
Fields§
§device: String
Device references one device instance via its name in the driver’s resource pool. It must be a DNS label.
driver: String
Driver specifies the name of the DRA driver whose kubelet plugin should be invoked to process the allocation once the claim is needed on a node.
Must be a DNS subdomain and should end with a DNS domain owned by the vendor of the driver.
pool: String
This name together with the driver name and the device name field identify which device was allocated (\<driver name\>/\<pool name\>/\<device name\>
).
Must not be longer than 253 characters and may contain one or more DNS sub-domains separated by slashes.
request: String
Request is the name of the request in the claim which caused this device to be allocated. Multiple devices may have been allocated per request.
Trait Implementations§
Source§impl Clone for DeviceRequestAllocationResult
impl Clone for DeviceRequestAllocationResult
Source§fn clone(&self) -> DeviceRequestAllocationResult
fn clone(&self) -> DeviceRequestAllocationResult
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl DeepMerge for DeviceRequestAllocationResult
impl DeepMerge for DeviceRequestAllocationResult
Source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
other
into self
.Source§impl Default for DeviceRequestAllocationResult
impl Default for DeviceRequestAllocationResult
Source§fn default() -> DeviceRequestAllocationResult
fn default() -> DeviceRequestAllocationResult
Source§impl<'de> Deserialize<'de> for DeviceRequestAllocationResult
impl<'de> Deserialize<'de> for DeviceRequestAllocationResult
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 DeviceRequestAllocationResult
impl JsonSchema for DeviceRequestAllocationResult
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 moreSource§impl PartialEq for DeviceRequestAllocationResult
impl PartialEq for DeviceRequestAllocationResult
Source§fn eq(&self, other: &DeviceRequestAllocationResult) -> bool
fn eq(&self, other: &DeviceRequestAllocationResult) -> bool
self
and other
values to be equal, and is used by ==
.