pub struct FluentBitPositionDbGlusterfs {
pub endpoints: String,
pub path: String,
pub read_only: Option<bool>,
}Expand description
glusterfs represents a Glusterfs mount on the host that shares a pod’s lifetime. Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported.
Fields§
§endpoints: Stringendpoints is the endpoint name that details Glusterfs topology.
path: Stringpath is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
read_only: Option<bool>readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
Trait Implementations§
Source§impl Clone for FluentBitPositionDbGlusterfs
impl Clone for FluentBitPositionDbGlusterfs
Source§fn clone(&self) -> FluentBitPositionDbGlusterfs
fn clone(&self) -> FluentBitPositionDbGlusterfs
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 FluentBitPositionDbGlusterfs
impl Debug for FluentBitPositionDbGlusterfs
Source§impl Default for FluentBitPositionDbGlusterfs
impl Default for FluentBitPositionDbGlusterfs
Source§fn default() -> FluentBitPositionDbGlusterfs
fn default() -> FluentBitPositionDbGlusterfs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FluentBitPositionDbGlusterfs
impl<'de> Deserialize<'de> for FluentBitPositionDbGlusterfs
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 FluentBitPositionDbGlusterfs
impl PartialEq for FluentBitPositionDbGlusterfs
Source§fn eq(&self, other: &FluentBitPositionDbGlusterfs) -> bool
fn eq(&self, other: &FluentBitPositionDbGlusterfs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FluentBitPositionDbGlusterfs
Auto Trait Implementations§
impl Freeze for FluentBitPositionDbGlusterfs
impl RefUnwindSafe for FluentBitPositionDbGlusterfs
impl Send for FluentBitPositionDbGlusterfs
impl Sync for FluentBitPositionDbGlusterfs
impl Unpin for FluentBitPositionDbGlusterfs
impl UnwindSafe for FluentBitPositionDbGlusterfs
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