pub struct Overrides {
pub exposure: Option<ExposureChange>,
pub smtp: Option<bool>,
pub backup: Option<bool>,
pub auth: Option<bool>,
pub enable_groups: BTreeSet<String>,
pub disable_groups: BTreeSet<String>,
pub choose: BTreeMap<String, String>,
pub env_overrides: BTreeMap<String, String>,
pub reassert_auth: bool,
}Expand description
The integration change-set for configure. None/empty fields leave the
current state untouched; provided fields are the new truth.
Fields§
§exposure: Option<ExposureChange>§smtp: Option<bool>§backup: Option<bool>§auth: Option<bool>§enable_groups: BTreeSet<String>§disable_groups: BTreeSet<String>§choose: BTreeMap<String, String>§env_overrides: BTreeMap<String, String>§reassert_auth: boolRe-register the OIDC client even when auth is already on and the URL is unchanged (repairs a provider/consumer desync).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Overrides
impl<'de> Deserialize<'de> for Overrides
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 Overrides
impl RefUnwindSafe for Overrides
impl Send for Overrides
impl Sync for Overrides
impl Unpin for Overrides
impl UnsafeUnpin for Overrides
impl UnwindSafe for Overrides
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