Struct k8s_openapi::api::resource::v1alpha2::VendorParameters
source · pub struct VendorParameters {
pub driver_name: Option<String>,
pub parameters: Option<RawExtension>,
}
Expand description
VendorParameters are opaque parameters for one particular driver.
Fields§
§driver_name: Option<String>
DriverName is the name used by the DRA driver kubelet plugin.
parameters: Option<RawExtension>
Parameters can be arbitrary setup parameters. They are ignored while allocating a claim.
Trait Implementations§
source§impl Clone for VendorParameters
impl Clone for VendorParameters
source§fn clone(&self) -> VendorParameters
fn clone(&self) -> VendorParameters
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 VendorParameters
impl Debug for VendorParameters
source§impl DeepMerge for VendorParameters
impl DeepMerge for VendorParameters
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for VendorParameters
impl Default for VendorParameters
source§fn default() -> VendorParameters
fn default() -> VendorParameters
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for VendorParameters
impl<'de> Deserialize<'de> for VendorParameters
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 VendorParameters
impl PartialEq for VendorParameters
source§fn eq(&self, other: &VendorParameters) -> bool
fn eq(&self, other: &VendorParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for VendorParameters
impl Serialize for VendorParameters
impl StructuralPartialEq for VendorParameters
Auto Trait Implementations§
impl Freeze for VendorParameters
impl RefUnwindSafe for VendorParameters
impl Send for VendorParameters
impl Sync for VendorParameters
impl Unpin for VendorParameters
impl UnwindSafe for VendorParameters
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