pub struct DynamicConfigEvaluation {
pub base: BaseEvaluation,
pub id_type: Option<InternedString>,
pub value: DynamicReturnable,
pub is_device_based: bool,
pub passed: bool,
}
Fields§
§base: BaseEvaluation
§id_type: Option<InternedString>
§value: DynamicReturnable
§is_device_based: bool
§passed: bool
Trait Implementations§
Source§impl Clone for DynamicConfigEvaluation
impl Clone for DynamicConfigEvaluation
Source§fn clone(&self) -> DynamicConfigEvaluation
fn clone(&self) -> DynamicConfigEvaluation
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 DynamicConfigEvaluation
impl<'de> Deserialize<'de> for DynamicConfigEvaluation
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<'a> From<&'a DynamicConfigEvaluation> for AnyEvaluation<'a>
impl<'a> From<&'a DynamicConfigEvaluation> for AnyEvaluation<'a>
Source§fn from(dynamic_config_evalation: &'a DynamicConfigEvaluation) -> Self
fn from(dynamic_config_evalation: &'a DynamicConfigEvaluation) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DynamicConfigEvaluation
impl RefUnwindSafe for DynamicConfigEvaluation
impl Send for DynamicConfigEvaluation
impl Sync for DynamicConfigEvaluation
impl Unpin for DynamicConfigEvaluation
impl UnwindSafe for DynamicConfigEvaluation
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