pub struct RecursionWarning {
pub func_name: String,
pub message: String,
}Expand description
Warning for potentially infinite recursion
Fields§
§func_name: StringName of the function with potential infinite recursion.
message: StringDescriptive warning message.
Trait Implementations§
Source§impl Clone for RecursionWarning
impl Clone for RecursionWarning
Source§fn clone(&self) -> RecursionWarning
fn clone(&self) -> RecursionWarning
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 moreSource§impl Debug for RecursionWarning
impl Debug for RecursionWarning
Auto Trait Implementations§
impl Freeze for RecursionWarning
impl RefUnwindSafe for RecursionWarning
impl Send for RecursionWarning
impl Sync for RecursionWarning
impl Unpin for RecursionWarning
impl UnsafeUnpin for RecursionWarning
impl UnwindSafe for RecursionWarning
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