pub enum ProviderProfileEnum {
    ProfileBasedManagement,
    Replication,
    Other_(String),
}Expand description
Profiles supported by VASA Provider.
Possible values:
ProfileBasedManagement: PBM profileReplication: Replication profile
Variants§
ProfileBasedManagement
Replication
Other_(String)
This variant handles values not known at compile time.
Trait Implementations§
Source§impl Clone for ProviderProfileEnum
 
impl Clone for ProviderProfileEnum
Source§fn clone(&self) -> ProviderProfileEnum
 
fn clone(&self) -> ProviderProfileEnum
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 ProviderProfileEnum
 
impl Debug for ProviderProfileEnum
Source§impl<'de> Deserialize<'de> for ProviderProfileEnum
 
impl<'de> Deserialize<'de> for ProviderProfileEnum
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 ProviderProfileEnum> for &'static str
 
impl<'_derivative_strum> From<&'_derivative_strum ProviderProfileEnum> for &'static str
Source§fn from(x: &'_derivative_strum ProviderProfileEnum) -> &'static str
 
fn from(x: &'_derivative_strum ProviderProfileEnum) -> &'static str
Converts to this type from the input type.
Source§impl From<ProviderProfileEnum> for &'static str
 
impl From<ProviderProfileEnum> for &'static str
Source§fn from(x: ProviderProfileEnum) -> &'static str
 
fn from(x: ProviderProfileEnum) -> &'static str
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProviderProfileEnum
impl RefUnwindSafe for ProviderProfileEnum
impl Send for ProviderProfileEnum
impl Sync for ProviderProfileEnum
impl Unpin for ProviderProfileEnum
impl UnwindSafe for ProviderProfileEnum
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