pub struct Report<Current: State> { /* private fields */ }Implementations§
Source§impl<Current: State> Report<Current>
impl<Current: State> Report<Current>
pub fn to<'valid, Following: DerivedState<'valid>>( &'valid mut self, ) -> Report<Following>
pub fn warn<Object: Into<Issue>, Wants: Default>(&self, object: Object) -> Wants
pub fn error<Object: Into<Issue>, Wants: Default>( &self, object: Object, ) -> Wants
pub fn critical<Object: Into<Issue>, Wants: Default>( &self, object: Object, ) -> Wants
Auto Trait Implementations§
impl<Current> Freeze for Report<Current>where
Current: Freeze,
impl<Current> RefUnwindSafe for Report<Current>where
Current: RefUnwindSafe,
impl<Current> Send for Report<Current>where
Current: Send,
impl<Current> Sync for Report<Current>where
Current: Sync,
impl<Current> Unpin for Report<Current>where
Current: Unpin,
impl<Current> UnsafeUnpin for Report<Current>where
Current: UnsafeUnpin,
impl<Current> UnwindSafe for Report<Current>where
Current: UnwindSafe,
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