pub struct MultiGeneratorError {
pub generator_name: String,
pub message: String,
}Expand description
Helper error type for multi-generator operations
Fields§
§generator_name: String§message: StringTrait Implementations§
Source§impl Debug for MultiGeneratorError
impl Debug for MultiGeneratorError
Source§impl Display for MultiGeneratorError
impl Display for MultiGeneratorError
Source§impl Error for MultiGeneratorError
impl Error for MultiGeneratorError
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()
Auto Trait Implementations§
impl Freeze for MultiGeneratorError
impl RefUnwindSafe for MultiGeneratorError
impl Send for MultiGeneratorError
impl Sync for MultiGeneratorError
impl Unpin for MultiGeneratorError
impl UnsafeUnpin for MultiGeneratorError
impl UnwindSafe for MultiGeneratorError
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