pub struct LuaExtensionRange(pub ExtensionRange);
Tuple Fields§
§0: ExtensionRange
Methods from Deref<Target = ExtensionRange>§
Trait Implementations§
Source§impl Clone for LuaExtensionRange
impl Clone for LuaExtensionRange
Source§fn clone(&self) -> LuaExtensionRange
fn clone(&self) -> LuaExtensionRange
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 LuaExtensionRange
impl Debug for LuaExtensionRange
Source§impl Default for LuaExtensionRange
impl Default for LuaExtensionRange
Source§fn default() -> LuaExtensionRange
fn default() -> LuaExtensionRange
Returns the “default value” for a type. Read more
Source§impl Deref for LuaExtensionRange
impl Deref for LuaExtensionRange
Source§impl DerefMut for LuaExtensionRange
impl DerefMut for LuaExtensionRange
Source§impl From<ExtensionRange> for LuaExtensionRange
impl From<ExtensionRange> for LuaExtensionRange
Source§fn from(value: ExtensionRange) -> Self
fn from(value: ExtensionRange) -> Self
Converts to this type from the input type.
Source§impl From<LuaExtensionRange> for ExtensionRange
impl From<LuaExtensionRange> for ExtensionRange
Source§fn from(value: LuaExtensionRange) -> Self
fn from(value: LuaExtensionRange) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LuaExtensionRange
impl PartialEq for LuaExtensionRange
Source§impl UserData for LuaExtensionRange
impl UserData for LuaExtensionRange
Source§fn add_fields<F: UserDataFields<Self>>(fields: &mut F)
fn add_fields<F: UserDataFields<Self>>(fields: &mut F)
Adds custom fields specific to this userdata.
Source§fn add_methods<M: UserDataMethods<Self>>(methods: &mut M)
fn add_methods<M: UserDataMethods<Self>>(methods: &mut M)
Adds custom methods and operators specific to this userdata.
Source§fn register(registry: &mut UserDataRegistry<Self>)
fn register(registry: &mut UserDataRegistry<Self>)
Registers this type for use in Lua. Read more
impl StructuralPartialEq for LuaExtensionRange
Auto Trait Implementations§
impl !Freeze for LuaExtensionRange
impl RefUnwindSafe for LuaExtensionRange
impl Send for LuaExtensionRange
impl Sync for LuaExtensionRange
impl Unpin for LuaExtensionRange
impl UnwindSafe for LuaExtensionRange
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoLuaMulti for Twhere
T: IntoLua,
impl<T> IntoLuaMulti for Twhere
T: IntoLua,
Source§fn into_lua_multi(self, lua: &Lua) -> Result<MultiValue, Error>
fn into_lua_multi(self, lua: &Lua) -> Result<MultiValue, Error>
Performs the conversion.