pub struct AzureFileVolumeSource {
pub read_only: Option<bool>,
pub secret_name: Option<String>,
pub share_name: Option<String>,
}Fields§
§read_only: Option<bool>Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +optional
secret_name: Option<String>the name of secret that contains Azure Storage Account Name and Key
Share Name
Implementations§
Source§impl AzureFileVolumeSource
impl AzureFileVolumeSource
pub fn new() -> AzureFileVolumeSource
Trait Implementations§
Source§impl Clone for AzureFileVolumeSource
impl Clone for AzureFileVolumeSource
Source§fn clone(&self) -> AzureFileVolumeSource
fn clone(&self) -> AzureFileVolumeSource
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 AzureFileVolumeSource
impl Debug for AzureFileVolumeSource
Source§impl<'de> Deserialize<'de> for AzureFileVolumeSource
impl<'de> Deserialize<'de> for AzureFileVolumeSource
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 AzureFileVolumeSource
Converts Query Parameters representation (style=form, explode=false) to a AzureFileVolumeSource value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for AzureFileVolumeSource
Converts Query Parameters representation (style=form, explode=false) to a AzureFileVolumeSource value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl PartialEq for AzureFileVolumeSource
impl PartialEq for AzureFileVolumeSource
Source§impl Serialize for AzureFileVolumeSource
impl Serialize for AzureFileVolumeSource
Source§impl ToString for AzureFileVolumeSource
Converts the AzureFileVolumeSource 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 AzureFileVolumeSource
Converts the AzureFileVolumeSource 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 AzureFileVolumeSource
impl Validate for AzureFileVolumeSource
Source§impl<'v_a> ValidateArgs<'v_a> for AzureFileVolumeSource
impl<'v_a> ValidateArgs<'v_a> for AzureFileVolumeSource
impl StructuralPartialEq for AzureFileVolumeSource
Auto Trait Implementations§
impl Freeze for AzureFileVolumeSource
impl RefUnwindSafe for AzureFileVolumeSource
impl Send for AzureFileVolumeSource
impl Sync for AzureFileVolumeSource
impl Unpin for AzureFileVolumeSource
impl UnwindSafe for AzureFileVolumeSource
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