pub struct ServiceSafelist {
pub enabled: bool,
pub hash_types: Vec<SafelistHashTypes>,
pub enforce_safelist_service: bool,
}Expand description
Service’s Safelisting Configuration
Fields§
§enabled: boolShould services be allowed to check extracted files against safelist?
hash_types: Vec<SafelistHashTypes>Types of file hashes used for safelist checks
enforce_safelist_service: boolShould the Safelist service always run on extracted files?
Trait Implementations§
Source§impl Default for ServiceSafelist
impl Default for ServiceSafelist
Source§impl<'de> Deserialize<'de> for ServiceSafelistwhere
ServiceSafelist: Default,
impl<'de> Deserialize<'de> for ServiceSafelistwhere
ServiceSafelist: Default,
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
Auto Trait Implementations§
impl Freeze for ServiceSafelist
impl RefUnwindSafe for ServiceSafelist
impl Send for ServiceSafelist
impl Sync for ServiceSafelist
impl Unpin for ServiceSafelist
impl UnwindSafe for ServiceSafelist
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more