pub struct SecretProviderOp {
pub enabled: bool,
}Expand description
op (1Password CLI) provider config.
Fields§
§enabled: boolWhether the op:// scheme is registered. Default false —
same opt-in posture as pass.
Trait Implementations§
Source§impl Clone for SecretProviderOp
impl Clone for SecretProviderOp
Source§fn clone(&self) -> SecretProviderOp
fn clone(&self) -> SecretProviderOp
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 Config for SecretProviderOp
impl Config for SecretProviderOp
Source§type Layer = SecretProviderOpLayer
type Layer = SecretProviderOpLayer
A layer of
Self (a potentially partial configuration). Read moreSource§fn from_layer(layer: Self::Layer) -> Result<Self, Error>
fn from_layer(layer: Self::Layer) -> Result<Self, Error>
Tries to create
Self from a layer and validates itself. Read moreSource§fn builder() -> Builder<Self>
fn builder() -> Builder<Self>
Convenience builder to configure, load and merge multiple configuration
sources. Sources specified earlier have a higher priority; later
sources only fill in the gaps. After all sources have been loaded, the
default values (usually specified with
#[default = ...]) are merged
(with the lowest priority). Read moreSource§impl Debug for SecretProviderOp
impl Debug for SecretProviderOp
Source§impl<'de> Deserialize<'de> for SecretProviderOp
impl<'de> Deserialize<'de> for SecretProviderOp
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
Auto Trait Implementations§
impl Freeze for SecretProviderOp
impl RefUnwindSafe for SecretProviderOp
impl Send for SecretProviderOp
impl Sync for SecretProviderOp
impl Unpin for SecretProviderOp
impl UnsafeUnpin for SecretProviderOp
impl UnwindSafe for SecretProviderOp
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