pub struct ServiceSafelist {
pub enabled: bool,
pub hash_types: Vec<SafelistHashTypes>,
pub enforce_safelist_service: bool,
}
Expand description
Service’s Safelisting Configuration
Fields§
§enabled: bool
Should services be allowed to check extracted files against safelist?
hash_types: Vec<SafelistHashTypes>
Types of file hashes used for safelist checks
enforce_safelist_service: bool
Should the Safelist service always run on extracted files?
Trait Implementations§
Source§impl Clone for ServiceSafelist
impl Clone for ServiceSafelist
Source§fn clone(&self) -> ServiceSafelist
fn clone(&self) -> ServiceSafelist
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ServiceSafelist
impl Debug for ServiceSafelist
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
Source§impl PartialEq for ServiceSafelist
impl PartialEq for ServiceSafelist
Source§impl Serialize for ServiceSafelist
impl Serialize for ServiceSafelist
impl Eq for ServiceSafelist
impl StructuralPartialEq for ServiceSafelist
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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