pub struct IGNORE_NETWORKING_RESOURCE_MAP { /* private fields */ }Expand description
Ignore the resources for visual content types.
Methods from Deref<Target = Set<&'static str>>§
Sourcepub fn get_key<U>(&self, key: &U) -> Option<&T>
pub fn get_key<U>(&self, key: &U) -> Option<&T>
Returns a reference to the set’s internal static instance of the given key.
This can be useful for interning schemes.
Sourcepub fn iter(&self) -> Iter<'_, T>
pub fn iter(&self) -> Iter<'_, T>
Returns an iterator over the values in the set.
Values are returned in an arbitrary but fixed order.
Sourcepub fn is_disjoint(&self, other: &Set<T>) -> bool
pub fn is_disjoint(&self, other: &Set<T>) -> bool
Returns true if other shares no elements with self.
Sourcepub fn is_subset(&self, other: &Set<T>) -> bool
pub fn is_subset(&self, other: &Set<T>) -> bool
Returns true if other contains all values in self.
Sourcepub fn is_superset(&self, other: &Set<T>) -> bool
pub fn is_superset(&self, other: &Set<T>) -> bool
Returns true if self contains all values in other.
Trait Implementations§
impl LazyStatic for IGNORE_NETWORKING_RESOURCE_MAP
Auto Trait Implementations§
impl Freeze for IGNORE_NETWORKING_RESOURCE_MAP
impl RefUnwindSafe for IGNORE_NETWORKING_RESOURCE_MAP
impl Send for IGNORE_NETWORKING_RESOURCE_MAP
impl Sync for IGNORE_NETWORKING_RESOURCE_MAP
impl Unpin for IGNORE_NETWORKING_RESOURCE_MAP
impl UnwindSafe for IGNORE_NETWORKING_RESOURCE_MAP
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