pub enum PbmLoggingConfigurationComponentEnum {
Pbm,
Vslm,
Sms,
Spbm,
Sps,
HttpclientHeader,
HttpclientContent,
Vmomi,
Other_(String),
}Expand description
This enum corresponds to the different packages whose logging is configured independently by sps service.
Possible values:
pbm: Modifies logging level of com.vmware.pbm package.vslm: Modifies logging level of com.vmware.vslm package.sms: Modifies logging level of com.vmware.vim.sms package.spbm: Modifies logging level of com.vmware.spbm package.sps: Modifies logging level of com.vmware.sps package.httpclient_header: Modifies logging level of httpclient wire header.httpclient_content: Modifies logging level of httpclient wire content.vmomi: Modifies logging level of com.vmware.vim.vmomi package.
Variants§
Pbm
Vslm
Sms
Spbm
Sps
HttpclientHeader
HttpclientContent
Vmomi
Other_(String)
This variant handles values not known at compile time.
Trait Implementations§
Source§impl Clone for PbmLoggingConfigurationComponentEnum
impl Clone for PbmLoggingConfigurationComponentEnum
Source§fn clone(&self) -> PbmLoggingConfigurationComponentEnum
fn clone(&self) -> PbmLoggingConfigurationComponentEnum
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<'de> Deserialize<'de> for PbmLoggingConfigurationComponentEnum
impl<'de> Deserialize<'de> for PbmLoggingConfigurationComponentEnum
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<'_derivative_strum> From<&'_derivative_strum PbmLoggingConfigurationComponentEnum> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum PbmLoggingConfigurationComponentEnum> for &'static str
Source§fn from(
x: &'_derivative_strum PbmLoggingConfigurationComponentEnum,
) -> &'static str
fn from( x: &'_derivative_strum PbmLoggingConfigurationComponentEnum, ) -> &'static str
Converts to this type from the input type.
Source§impl From<PbmLoggingConfigurationComponentEnum> for &'static str
impl From<PbmLoggingConfigurationComponentEnum> for &'static str
Source§fn from(x: PbmLoggingConfigurationComponentEnum) -> &'static str
fn from(x: PbmLoggingConfigurationComponentEnum) -> &'static str
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PbmLoggingConfigurationComponentEnum
impl RefUnwindSafe for PbmLoggingConfigurationComponentEnum
impl Send for PbmLoggingConfigurationComponentEnum
impl Sync for PbmLoggingConfigurationComponentEnum
impl Unpin for PbmLoggingConfigurationComponentEnum
impl UnwindSafe for PbmLoggingConfigurationComponentEnum
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