pub struct MetaCallStringConversionError {
pub original_string: String,
pub nul_error: NulError,
}Expand description
This error may happen when passing contains a null character. You can access the original string and the NulError throughout this struct.
Fields§
§original_string: String§nul_error: NulErrorTrait Implementations§
Source§impl Clone for MetaCallStringConversionError
impl Clone for MetaCallStringConversionError
Source§fn clone(&self) -> MetaCallStringConversionError
fn clone(&self) -> MetaCallStringConversionError
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 MetaCallStringConversionError
impl RefUnwindSafe for MetaCallStringConversionError
impl Send for MetaCallStringConversionError
impl Sync for MetaCallStringConversionError
impl Unpin for MetaCallStringConversionError
impl UnwindSafe for MetaCallStringConversionError
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