Enum arcdps::evtc::guid::ContentLocal
source · #[repr(u32)]pub enum ContentLocal {
Effect = 0,
Marker = 1,
}
Expand description
Content local for StateChange::IdToGUID
events.
Variants§
Trait Implementations§
source§impl Clone for ContentLocal
impl Clone for ContentLocal
source§fn clone(&self) -> ContentLocal
fn clone(&self) -> ContentLocal
Returns a copy 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 ContentLocal
impl Debug for ContentLocal
source§impl<'de> Deserialize<'de> for ContentLocal
impl<'de> Deserialize<'de> for ContentLocal
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<ContentLocal, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<ContentLocal, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for ContentLocal
impl Hash for ContentLocal
source§impl Ord for ContentLocal
impl Ord for ContentLocal
source§fn cmp(&self, other: &ContentLocal) -> Ordering
fn cmp(&self, other: &ContentLocal) -> 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 ContentLocal
impl PartialEq for ContentLocal
source§fn eq(&self, other: &ContentLocal) -> bool
fn eq(&self, other: &ContentLocal) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ContentLocal
impl PartialOrd for ContentLocal
source§fn partial_cmp(&self, other: &ContentLocal) -> Option<Ordering>
fn partial_cmp(&self, other: &ContentLocal) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for ContentLocal
impl Serialize for ContentLocal
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§impl TryFrom<u32> for ContentLocal
impl TryFrom<u32> for ContentLocal
§type Error = TryFromPrimitiveError<ContentLocal>
type Error = TryFromPrimitiveError<ContentLocal>
The type returned in the event of a conversion error.
source§fn try_from(
number: u32
) -> Result<ContentLocal, TryFromPrimitiveError<ContentLocal>>
fn try_from( number: u32 ) -> Result<ContentLocal, TryFromPrimitiveError<ContentLocal>>
Performs the conversion.
source§impl TryFromPrimitive for ContentLocal
impl TryFromPrimitive for ContentLocal
type Primitive = u32
type Error = TryFromPrimitiveError<ContentLocal>
const NAME: &'static str = "ContentLocal"
fn try_from_primitive( number: <ContentLocal as TryFromPrimitive>::Primitive ) -> Result<ContentLocal, TryFromPrimitiveError<ContentLocal>>
impl Copy for ContentLocal
impl Eq for ContentLocal
impl StructuralPartialEq for ContentLocal
Auto Trait Implementations§
impl Freeze for ContentLocal
impl RefUnwindSafe for ContentLocal
impl Send for ContentLocal
impl Sync for ContentLocal
impl Unpin for ContentLocal
impl UnwindSafe for ContentLocal
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