pub enum TelemetrySource {
Cli,
Env,
Config,
Default,
}Expand description
Where resolved telemetry consent came from (#5441).
Variants§
Cli
--telemetry on this run’s command line.
Env
CODEWHALE_TELEMETRY/DEEPSEEK_TELEMETRY, including the dispatcher’s
floor statement and every environment kill switch.
Config
telemetry = … written to the config file.
Default
Nobody said anything; the shipped default (on) applies silently.
Implementations§
Trait Implementations§
Source§impl Clone for TelemetrySource
impl Clone for TelemetrySource
Source§fn clone(&self) -> TelemetrySource
fn clone(&self) -> TelemetrySource
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 moreimpl Copy for TelemetrySource
Source§impl Debug for TelemetrySource
impl Debug for TelemetrySource
impl Eq for TelemetrySource
Source§impl PartialEq for TelemetrySource
impl PartialEq for TelemetrySource
impl StructuralPartialEq for TelemetrySource
Auto Trait Implementations§
impl Freeze for TelemetrySource
impl RefUnwindSafe for TelemetrySource
impl Send for TelemetrySource
impl Sync for TelemetrySource
impl Unpin for TelemetrySource
impl UnsafeUnpin for TelemetrySource
impl UnwindSafe for TelemetrySource
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.