pub struct CacheResolve {
pub pkg_name: XString,
pub target: String,
pub target_overridden: bool,
pub features_args: Vec<String>,
pub channel: String,
pub checker: CheckerTool,
pub cmd: String,
}Fields§
§pkg_name: XString§target: String§target_overridden: bool仅当自定义检查命令出现 –target 时为 true
features_args: Vec<String>§channel: String§checker: CheckerTool§cmd: String完整的检查命令字符串(一定包含 –target): 来自 os-checker 生成或者配置文件自定义
Trait Implementations§
Source§impl Debug for CacheResolve
impl Debug for CacheResolve
Source§impl<'__de, __A> Decode<'__de, Binary, __A> for CacheResolvewhere
__A: Allocator,
impl<'__de, __A> Decode<'__de, Binary, __A> for CacheResolvewhere
__A: Allocator,
Source§const IS_BITWISE_DECODE: bool = false
const IS_BITWISE_DECODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§impl<'__de, __A> Decode<'__de, Text, __A> for CacheResolvewhere
__A: Allocator,
impl<'__de, __A> Decode<'__de, Text, __A> for CacheResolvewhere
__A: Allocator,
Source§const IS_BITWISE_DECODE: bool = false
const IS_BITWISE_DECODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§impl Encode<Binary> for CacheResolve
impl Encode<Binary> for CacheResolve
Source§const IS_BITWISE_ENCODE: bool = false
const IS_BITWISE_ENCODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§type Encode = CacheResolve
type Encode = CacheResolve
The underlying type being encoded. Read more
Source§impl Encode<Text> for CacheResolve
impl Encode<Text> for CacheResolve
Source§const IS_BITWISE_ENCODE: bool = false
const IS_BITWISE_ENCODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§type Encode = CacheResolve
type Encode = CacheResolve
The underlying type being encoded. Read more
Auto Trait Implementations§
impl Freeze for CacheResolve
impl RefUnwindSafe for CacheResolve
impl Send for CacheResolve
impl Sync for CacheResolve
impl Unpin for CacheResolve
impl UnwindSafe for CacheResolve
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