Struct k8s_openapi::api::resource::v1alpha2::DriverAllocationResult
source · pub struct DriverAllocationResult {
pub named_resources: Option<NamedResourcesAllocationResult>,
pub vendor_request_parameters: Option<RawExtension>,
}
Expand description
DriverAllocationResult contains vendor parameters and the allocation result for one request.
Fields§
§named_resources: Option<NamedResourcesAllocationResult>
NamedResources describes the allocation result when using the named resources model.
vendor_request_parameters: Option<RawExtension>
VendorRequestParameters are the per-request configuration parameters from the time that the claim was allocated.
Trait Implementations§
source§impl Clone for DriverAllocationResult
impl Clone for DriverAllocationResult
source§fn clone(&self) -> DriverAllocationResult
fn clone(&self) -> DriverAllocationResult
Returns a copy 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 DriverAllocationResult
impl Debug for DriverAllocationResult
source§impl DeepMerge for DriverAllocationResult
impl DeepMerge for DriverAllocationResult
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for DriverAllocationResult
impl Default for DriverAllocationResult
source§fn default() -> DriverAllocationResult
fn default() -> DriverAllocationResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DriverAllocationResult
impl<'de> Deserialize<'de> for DriverAllocationResult
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 PartialEq for DriverAllocationResult
impl PartialEq for DriverAllocationResult
source§fn eq(&self, other: &DriverAllocationResult) -> bool
fn eq(&self, other: &DriverAllocationResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DriverAllocationResult
impl Serialize for DriverAllocationResult
impl StructuralPartialEq for DriverAllocationResult
Auto Trait Implementations§
impl Freeze for DriverAllocationResult
impl RefUnwindSafe for DriverAllocationResult
impl Send for DriverAllocationResult
impl Sync for DriverAllocationResult
impl Unpin for DriverAllocationResult
impl UnwindSafe for DriverAllocationResult
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