pub struct Issue {
pub code: String,
pub level: Level,
pub path: String,
pub message: String,
}Expand description
单条校验问题。
Fields§
§code: String错误码。
level: Level级别。
path: String定位路径(bundle 内相对路径)。
message: String人类可读说明。
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Issue
impl RefUnwindSafe for Issue
impl Send for Issue
impl Sync for Issue
impl Unpin for Issue
impl UnsafeUnpin for Issue
impl UnwindSafe for Issue
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