pub struct TenantMefConfigResponse {
pub tenant_id: String,
pub mef_config: Option<TenantMefConfigResponseMefConfig>,
pub effective: TenantMefConfigResponseEffective,
}Expand description
TenantMefConfigResponse model.
Fields§
§tenant_id: String§mef_config: Option<TenantMefConfigResponseMefConfig>What an operator stored. Null when nothing is overridden — never an empty object.
effective: TenantMefConfigResponseEffectiveWhat the runtime will do. All false when the mission service is absent platform-wide, whatever the overrides say.
Trait Implementations§
Source§impl Clone for TenantMefConfigResponse
impl Clone for TenantMefConfigResponse
Source§fn clone(&self) -> TenantMefConfigResponse
fn clone(&self) -> TenantMefConfigResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TenantMefConfigResponse
impl Debug for TenantMefConfigResponse
Source§impl Default for TenantMefConfigResponse
impl Default for TenantMefConfigResponse
Source§fn default() -> TenantMefConfigResponse
fn default() -> TenantMefConfigResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TenantMefConfigResponse
impl<'de> Deserialize<'de> for TenantMefConfigResponse
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 TenantMefConfigResponse
impl PartialEq for TenantMefConfigResponse
Source§impl Serialize for TenantMefConfigResponse
impl Serialize for TenantMefConfigResponse
impl StructuralPartialEq for TenantMefConfigResponse
Auto Trait Implementations§
impl Freeze for TenantMefConfigResponse
impl RefUnwindSafe for TenantMefConfigResponse
impl Send for TenantMefConfigResponse
impl Sync for TenantMefConfigResponse
impl Unpin for TenantMefConfigResponse
impl UnsafeUnpin for TenantMefConfigResponse
impl UnwindSafe for TenantMefConfigResponse
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