pub enum LuaGeneratorError {
FunctionLocalAndExported(String),
StructLocalAndExported(String),
FailedToGetTablePathForStruct(String),
}Variants§
FunctionLocalAndExported(String)
StructLocalAndExported(String)
FailedToGetTablePathForStruct(String)
Trait Implementations§
Source§impl Clone for LuaGeneratorError
impl Clone for LuaGeneratorError
Source§fn clone(&self) -> LuaGeneratorError
fn clone(&self) -> LuaGeneratorError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LuaGeneratorError
impl Debug for LuaGeneratorError
Source§impl Display for LuaGeneratorError
impl Display for LuaGeneratorError
impl Eq for LuaGeneratorError
Source§impl Error for LuaGeneratorError
impl Error for LuaGeneratorError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for LuaGeneratorError
impl PartialEq for LuaGeneratorError
impl StructuralPartialEq for LuaGeneratorError
Auto Trait Implementations§
impl Freeze for LuaGeneratorError
impl RefUnwindSafe for LuaGeneratorError
impl Send for LuaGeneratorError
impl Sync for LuaGeneratorError
impl Unpin for LuaGeneratorError
impl UnsafeUnpin for LuaGeneratorError
impl UnwindSafe for LuaGeneratorError
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