pub enum LuaMsgUpdateUiMode {
All,
Allies,
Spectators,
}Expand description
Set when script is ‘ui’
JSON schema
{
"description": "Set when script is 'ui'",
"enum": [
"all",
"allies",
"spectators"
]
}Variants§
Trait Implementations§
Source§impl Clone for LuaMsgUpdateUiMode
impl Clone for LuaMsgUpdateUiMode
Source§fn clone(&self) -> LuaMsgUpdateUiMode
fn clone(&self) -> LuaMsgUpdateUiMode
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 LuaMsgUpdateUiMode
impl Debug for LuaMsgUpdateUiMode
Source§impl<'de> Deserialize<'de> for LuaMsgUpdateUiMode
impl<'de> Deserialize<'de> for LuaMsgUpdateUiMode
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 LuaMsgUpdateUiMode
impl Display for LuaMsgUpdateUiMode
Source§impl FromStr for LuaMsgUpdateUiMode
impl FromStr for LuaMsgUpdateUiMode
Source§impl Hash for LuaMsgUpdateUiMode
impl Hash for LuaMsgUpdateUiMode
Source§impl Ord for LuaMsgUpdateUiMode
impl Ord for LuaMsgUpdateUiMode
Source§fn cmp(&self, other: &LuaMsgUpdateUiMode) -> Ordering
fn cmp(&self, other: &LuaMsgUpdateUiMode) -> 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 LuaMsgUpdateUiMode
impl PartialEq for LuaMsgUpdateUiMode
Source§impl PartialOrd for LuaMsgUpdateUiMode
impl PartialOrd for LuaMsgUpdateUiMode
Source§impl Serialize for LuaMsgUpdateUiMode
impl Serialize for LuaMsgUpdateUiMode
Source§impl TryFrom<&String> for LuaMsgUpdateUiMode
impl TryFrom<&String> for LuaMsgUpdateUiMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for LuaMsgUpdateUiMode
impl TryFrom<&str> for LuaMsgUpdateUiMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for LuaMsgUpdateUiMode
impl TryFrom<String> for LuaMsgUpdateUiMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for LuaMsgUpdateUiMode
impl Eq for LuaMsgUpdateUiMode
impl StructuralPartialEq for LuaMsgUpdateUiMode
Auto Trait Implementations§
impl Freeze for LuaMsgUpdateUiMode
impl RefUnwindSafe for LuaMsgUpdateUiMode
impl Send for LuaMsgUpdateUiMode
impl Sync for LuaMsgUpdateUiMode
impl Unpin for LuaMsgUpdateUiMode
impl UnsafeUnpin for LuaMsgUpdateUiMode
impl UnwindSafe for LuaMsgUpdateUiMode
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