pub struct FluentBitVolumesProjected {
pub default_mode: Option<i32>,
pub sources: Option<Vec<FluentBitVolumesProjectedSources>>,
}Expand description
projected items for all in one resources secrets, configmaps, and downward API
Fields§
§default_mode: Option<i32>defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
sources: Option<Vec<FluentBitVolumesProjectedSources>>sources is the list of volume projections. Each entry in this list handles one source.
Trait Implementations§
Source§impl Clone for FluentBitVolumesProjected
impl Clone for FluentBitVolumesProjected
Source§fn clone(&self) -> FluentBitVolumesProjected
fn clone(&self) -> FluentBitVolumesProjected
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 FluentBitVolumesProjected
impl Debug for FluentBitVolumesProjected
Source§impl Default for FluentBitVolumesProjected
impl Default for FluentBitVolumesProjected
Source§fn default() -> FluentBitVolumesProjected
fn default() -> FluentBitVolumesProjected
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FluentBitVolumesProjected
impl<'de> Deserialize<'de> for FluentBitVolumesProjected
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
impl StructuralPartialEq for FluentBitVolumesProjected
Auto Trait Implementations§
impl Freeze for FluentBitVolumesProjected
impl RefUnwindSafe for FluentBitVolumesProjected
impl Send for FluentBitVolumesProjected
impl Sync for FluentBitVolumesProjected
impl Unpin for FluentBitVolumesProjected
impl UnwindSafe for FluentBitVolumesProjected
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