pub struct Meta {
pub only_pkg_dir_globs: MaybeMulti,
pub skip_pkg_dir_globs: MaybeMulti,
pub target_env: TargetEnv,
pub rerun: bool,
pub use_last_cache: bool,
pub run_all_checkers: bool,
}Fields§
§only_pkg_dir_globs: MaybeMulti§skip_pkg_dir_globs: MaybeMulti§target_env: TargetEnv{ “target1”: { “ENV1”: “val” } }
rerun: bool§use_last_cache: bool§run_all_checkers: boolTrait Implementations§
Source§impl<'__de, __A> Decode<'__de, Binary, __A> for Metawhere
__A: Allocator,
impl<'__de, __A> Decode<'__de, Binary, __A> for Metawhere
__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 Metawhere
__A: Allocator,
impl<'__de, __A> Decode<'__de, Text, __A> for Metawhere
__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> Deserialize<'de> for Meta
impl<'de> Deserialize<'de> for Meta
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Encode<Binary> for Meta
impl Encode<Binary> for Meta
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§impl Encode<Text> for Meta
impl Encode<Text> for Meta
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
Auto Trait Implementations§
impl Freeze for Meta
impl RefUnwindSafe for Meta
impl Send for Meta
impl Sync for Meta
impl Unpin for Meta
impl UnwindSafe for Meta
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