pub struct TriggerZoneId(/* private fields */);
Implementations§
Trait Implementations§
Source§impl Clone for TriggerZoneId
impl Clone for TriggerZoneId
Source§fn clone(&self) -> TriggerZoneId
fn clone(&self) -> TriggerZoneId
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 TriggerZoneId
impl Debug for TriggerZoneId
Source§impl<'de> Deserialize<'de> for TriggerZoneId
impl<'de> Deserialize<'de> for TriggerZoneId
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 From<i64> for TriggerZoneId
impl From<i64> for TriggerZoneId
Source§impl<'lua> FromLua<'lua> for TriggerZoneId
impl<'lua> FromLua<'lua> for TriggerZoneId
Source§impl Hash for TriggerZoneId
impl Hash for TriggerZoneId
Source§impl<'lua> IntoLua<'lua> for TriggerZoneId
impl<'lua> IntoLua<'lua> for TriggerZoneId
Source§impl Ord for TriggerZoneId
impl Ord for TriggerZoneId
Source§fn cmp(&self, other: &TriggerZoneId) -> Ordering
fn cmp(&self, other: &TriggerZoneId) -> 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 TriggerZoneId
impl PartialEq for TriggerZoneId
Source§impl PartialOrd for TriggerZoneId
impl PartialOrd for TriggerZoneId
Source§impl Serialize for TriggerZoneId
impl Serialize for TriggerZoneId
impl Copy for TriggerZoneId
impl Eq for TriggerZoneId
impl StructuralPartialEq for TriggerZoneId
Auto Trait Implementations§
impl Freeze for TriggerZoneId
impl RefUnwindSafe for TriggerZoneId
impl Send for TriggerZoneId
impl Sync for TriggerZoneId
impl Unpin for TriggerZoneId
impl UnwindSafe for TriggerZoneId
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<'lua, T> FromLuaMulti<'lua> for Twhere
T: FromLua<'lua>,
impl<'lua, T> FromLuaMulti<'lua> for Twhere
T: FromLua<'lua>,
Source§fn from_lua_multi(values: MultiValue<'lua>, lua: &'lua Lua) -> Result<T, Error>
fn from_lua_multi(values: MultiValue<'lua>, lua: &'lua Lua) -> Result<T, Error>
Performs the conversion. Read more
fn from_lua_args( args: MultiValue<'lua>, i: usize, to: Option<&str>, lua: &'lua Lua, ) -> Result<T, Error>
unsafe fn from_stack_multi(nvals: i32, lua: &'lua Lua) -> Result<T, Error>
unsafe fn from_stack_args( nargs: i32, i: usize, to: Option<&str>, lua: &'lua Lua, ) -> Result<T, Error>
Source§impl<'lua, T> IntoLuaMulti<'lua> for Twhere
T: IntoLua<'lua>,
impl<'lua, T> IntoLuaMulti<'lua> for Twhere
T: IntoLua<'lua>,
Source§fn into_lua_multi(self, lua: &'lua Lua) -> Result<MultiValue<'lua>, Error>
fn into_lua_multi(self, lua: &'lua Lua) -> Result<MultiValue<'lua>, Error>
Performs the conversion.
unsafe fn push_into_stack_multi(self, lua: &'lua Lua) -> Result<i32, Error>
Source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.