pub enum MetaCallSetAttributeError {
SetAttributeFailure,
UnexpectedCStringConversionErr(MetaCallStringConversionError),
}Expand description
This error may happen when trying to set a class/object attribute. Check your logs
if you get SetAttributeFailure error variant.
Variants§
SetAttributeFailure
Failed to set the attribute.
UnexpectedCStringConversionErr(MetaCallStringConversionError)
Null character detected.
Trait Implementations§
Source§impl Clone for MetaCallSetAttributeError
impl Clone for MetaCallSetAttributeError
Source§fn clone(&self) -> MetaCallSetAttributeError
fn clone(&self) -> MetaCallSetAttributeError
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 MetaCallSetAttributeError
impl RefUnwindSafe for MetaCallSetAttributeError
impl Send for MetaCallSetAttributeError
impl Sync for MetaCallSetAttributeError
impl Unpin for MetaCallSetAttributeError
impl UnwindSafe for MetaCallSetAttributeError
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