pub enum TelemetryPrivacy {
Public,
Restricted,
}
Expand description
Privacy setting for telemetry data
In multiplayer sessions, only the player’s telemetry data is broadcast over UDP. Telemetry data of other cars is restricted to prevent players gaining an unfair advantage.
Variants§
Trait Implementations§
Source§impl Clone for TelemetryPrivacy
impl Clone for TelemetryPrivacy
Source§fn clone(&self) -> TelemetryPrivacy
fn clone(&self) -> TelemetryPrivacy
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 Debug for TelemetryPrivacy
impl Debug for TelemetryPrivacy
Source§impl Default for TelemetryPrivacy
impl Default for TelemetryPrivacy
Source§impl Hash for TelemetryPrivacy
impl Hash for TelemetryPrivacy
Source§impl Ord for TelemetryPrivacy
impl Ord for TelemetryPrivacy
Source§fn cmp(&self, other: &TelemetryPrivacy) -> Ordering
fn cmp(&self, other: &TelemetryPrivacy) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TelemetryPrivacy
impl PartialEq for TelemetryPrivacy
Source§impl PartialOrd for TelemetryPrivacy
impl PartialOrd for TelemetryPrivacy
impl Copy for TelemetryPrivacy
impl Eq for TelemetryPrivacy
impl StructuralPartialEq for TelemetryPrivacy
Auto Trait Implementations§
impl Freeze for TelemetryPrivacy
impl RefUnwindSafe for TelemetryPrivacy
impl Send for TelemetryPrivacy
impl Sync for TelemetryPrivacy
impl Unpin for TelemetryPrivacy
impl UnwindSafe for TelemetryPrivacy
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