pub enum ValueSource {
InGame = 3,
Decoder = 2,
CommunityTool = 1,
}Expand description
Source of a field value
Variants§
InGame = 3
Value shown in the game UI (highest priority)
Decoder = 2
Value extracted by our decoder
CommunityTool = 1
Value from a community tool (with source_detail naming it)
Implementations§
Trait Implementations§
Source§impl Clone for ValueSource
impl Clone for ValueSource
Source§fn clone(&self) -> ValueSource
fn clone(&self) -> ValueSource
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 ValueSource
impl Debug for ValueSource
Source§impl Default for ValueSource
impl Default for ValueSource
Source§fn default() -> ValueSource
fn default() -> ValueSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValueSource
impl<'de> Deserialize<'de> for ValueSource
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 Display for ValueSource
impl Display for ValueSource
Source§impl FromStr for ValueSource
impl FromStr for ValueSource
Source§impl Ord for ValueSource
impl Ord for ValueSource
Source§fn cmp(&self, other: &ValueSource) -> Ordering
fn cmp(&self, other: &ValueSource) -> 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 ValueSource
impl PartialEq for ValueSource
Source§impl PartialOrd for ValueSource
impl PartialOrd for ValueSource
Source§impl Serialize for ValueSource
impl Serialize for ValueSource
impl Copy for ValueSource
impl Eq for ValueSource
impl StructuralPartialEq for ValueSource
Auto Trait Implementations§
impl Freeze for ValueSource
impl RefUnwindSafe for ValueSource
impl Send for ValueSource
impl Sync for ValueSource
impl Unpin for ValueSource
impl UnwindSafe for ValueSource
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