pub struct JS_FRAMEWORK_PATH { /* private fields */ }
Expand description
path of a js framework
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§
Source§impl Deref for JS_FRAMEWORK_PATH
impl Deref for JS_FRAMEWORK_PATH
impl LazyStatic for JS_FRAMEWORK_PATH
Auto Trait Implementations§
impl Freeze for JS_FRAMEWORK_PATH
impl RefUnwindSafe for JS_FRAMEWORK_PATH
impl Send for JS_FRAMEWORK_PATH
impl Sync for JS_FRAMEWORK_PATH
impl Unpin for JS_FRAMEWORK_PATH
impl UnwindSafe for JS_FRAMEWORK_PATH
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