pub enum MetaCallClassFromNameError {
ClassNotFound,
UnexpectedCStringConversionErr(MetaCallStringConversionError),
}Expand description
This error may happen when trying to get a class by its name.
Variants§
ClassNotFound
Class not found.
UnexpectedCStringConversionErr(MetaCallStringConversionError)
Null character detected.
Trait Implementations§
Source§impl Clone for MetaCallClassFromNameError
impl Clone for MetaCallClassFromNameError
Source§fn clone(&self) -> MetaCallClassFromNameError
fn clone(&self) -> MetaCallClassFromNameError
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 moreAuto Trait Implementations§
impl Freeze for MetaCallClassFromNameError
impl RefUnwindSafe for MetaCallClassFromNameError
impl Send for MetaCallClassFromNameError
impl Sync for MetaCallClassFromNameError
impl Unpin for MetaCallClassFromNameError
impl UnwindSafe for MetaCallClassFromNameError
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