pub struct ProbedConfigEntry {
pub type_name: String,
pub default: String,
pub applicable: bool,
}Expand description
Observe this SDK’s real config defaults and applicability, variable by
variable. Lives here rather than in a probe binary so the executable
contract test and the cross-language parity gate measure the same thing.
One environment variable as observed from a real TelemetryConfig.
Fields§
§type_name: String§default: String§applicable: boolTrait Implementations§
Source§impl Clone for ProbedConfigEntry
impl Clone for ProbedConfigEntry
Source§fn clone(&self) -> ProbedConfigEntry
fn clone(&self) -> ProbedConfigEntry
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 ProbedConfigEntry
impl Debug for ProbedConfigEntry
impl Eq for ProbedConfigEntry
Source§impl PartialEq for ProbedConfigEntry
impl PartialEq for ProbedConfigEntry
Source§impl Serialize for ProbedConfigEntry
impl Serialize for ProbedConfigEntry
impl StructuralPartialEq for ProbedConfigEntry
Auto Trait Implementations§
impl Freeze for ProbedConfigEntry
impl RefUnwindSafe for ProbedConfigEntry
impl Send for ProbedConfigEntry
impl Sync for ProbedConfigEntry
impl Unpin for ProbedConfigEntry
impl UnsafeUnpin for ProbedConfigEntry
impl UnwindSafe for ProbedConfigEntry
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