pub struct Finding {
pub where_: String,
pub what: String,
pub ok: bool,
}Expand description
定义核对出来的一件事:在哪里、核的是什么、过没过。
它是「把这条定义对着工作区核一遍」的回执,不单列成一个文件——
workflow --check 的实现产物,规范里还没有这一节。
Fields§
§where_: String§what: String§ok: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Finding
impl RefUnwindSafe for Finding
impl Send for Finding
impl Sync for Finding
impl Unpin for Finding
impl UnsafeUnpin for Finding
impl UnwindSafe for Finding
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