Struct remoc_obs::hash_set::ObservableHashSet
source · [−]pub struct ObservableHashSet<T, Codec = Default> { /* private fields */ }
Expand description
A hash set that emits an event for each change.
Use subscribe to obtain an event stream that can be used for building a mirror of this hash set.
Implementations
sourceimpl<T, Codec> ObservableHashSet<T, Codec> where
T: Eq + Hash + Clone + RemoteSend,
Codec: Codec,
impl<T, Codec> ObservableHashSet<T, Codec> where
T: Eq + Hash + Clone + RemoteSend,
Codec: Codec,
sourcepub fn set_error_handler<E>(&mut self, on_err: E) where
E: Fn(SendError) + Send + Sync + 'static,
pub fn set_error_handler<E>(&mut self, on_err: E) where
E: Fn(SendError) + Send + Sync + 'static,
Sets the error handler function that is called when sending an event fails.
sourcepub fn subscribe(&self, buffer: usize) -> HashSetSubscription<T, Codec>
pub fn subscribe(&self, buffer: usize) -> HashSetSubscription<T, Codec>
Subscribes to change events from this observable hash set.
The current contents of the hash set is included with the subscription.
buffer
specifies the maximum size of the event buffer for this subscription in number of events.
If it is exceeded the subscription is shed and the receiver gets a RecvError::Lagged.
sourcepub fn subscribe_incremental(
&self,
buffer: usize
) -> HashSetSubscription<T, Codec>
pub fn subscribe_incremental(
&self,
buffer: usize
) -> HashSetSubscription<T, Codec>
Subscribes to change events from this observable hash set with incremental sending of the current contents.
The current contents of the hash set are sent incrementally.
buffer
specifies the maximum size of the event buffer for this subscription in number of events.
If it is exceeded the subscription is shed and the receiver gets a RecvError::Lagged.
sourcepub fn subscriber_count(&self) -> usize
pub fn subscriber_count(&self) -> usize
Current number of subscribers.
sourcepub fn insert(&mut self, value: T) -> bool
pub fn insert(&mut self, value: T) -> bool
Adds a value to the set.
A HashSetEvent::Set change event is sent.
Returns whether the set did have this value present.
Panics
Panics when done has been called before.
sourcepub fn replace(&mut self, value: T) -> Option<T>
pub fn replace(&mut self, value: T) -> Option<T>
Adds a value to the set, replacing the existing value, if any.
A HashSetEvent::Set change event is sent.
Returns the replaced value, if any.
Panics
Panics when done has been called before.
sourcepub fn remove<Q>(&mut self, value: &Q) -> bool where
T: Borrow<Q>,
Q: Hash + Eq,
pub fn remove<Q>(&mut self, value: &Q) -> bool where
T: Borrow<Q>,
Q: Hash + Eq,
Removes the value under the specified key.
A HashSetEvent::Remove change event is sent.
Returns whether the set did have this value present.
Panics
Panics when done has been called before.
sourcepub fn take<Q>(&mut self, value: &Q) -> Option<T> where
T: Borrow<Q>,
Q: Hash + Eq,
pub fn take<Q>(&mut self, value: &Q) -> Option<T> where
T: Borrow<Q>,
Q: Hash + Eq,
Removes the value under the specified key.
A HashSetEvent::Remove change event is sent.
Returns the removed value, if any.
Panics
Panics when done has been called before.
sourcepub fn clear(&mut self)
pub fn clear(&mut self)
Removes all items.
A HashSetEvent::Clear change event is sent.
Panics
Panics when done has been called before.
sourcepub fn retain<F>(&mut self, f: F) where
F: FnMut(&T) -> bool,
pub fn retain<F>(&mut self, f: F) where
F: FnMut(&T) -> bool,
Retains only the elements specified by the predicate.
A HashSetEvent::Remove change event is sent for every element that is removed.
Panics
Panics when done has been called before.
sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the hash set as much as possible.
A HashSetEvent::ShrinkToFit change event is sent.
Panics
Panics when done has been called before.
sourcepub fn done(&mut self)
pub fn done(&mut self)
Prevents further changes of this hash set and notifies are subscribers that no further events will occur.
Methods that modify the hash set will panic after this has been called. It is still possible to subscribe to this observable hash set.
sourcepub fn is_done(&self) -> bool
pub fn is_done(&self) -> bool
Returns true
if done has been called and further
changes are prohibited.
Methods that modify the hash set will panic in this case.
sourcepub fn into_inner(self) -> HashSet<T>
pub fn into_inner(self) -> HashSet<T>
Extracts the underlying hash set.
If done has not been called before this method, subscribers will receive an error.
Methods from Deref<Target = HashSet<T>>
1.0.0 · sourcepub fn capacity(&self) -> usize
pub fn capacity(&self) -> usize
Returns the number of elements the set can hold without reallocating.
Examples
use std::collections::HashSet;
let set: HashSet<i32> = HashSet::with_capacity(100);
assert!(set.capacity() >= 100);
1.0.0 · sourcepub fn iter(&self) -> Iter<'_, T>
pub fn iter(&self) -> Iter<'_, T>
An iterator visiting all elements in arbitrary order.
The iterator element type is &'a T
.
Examples
use std::collections::HashSet;
let mut set = HashSet::new();
set.insert("a");
set.insert("b");
// Will print in an arbitrary order.
for x in set.iter() {
println!("{}", x);
}
1.0.0 · sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the number of elements in the set.
Examples
use std::collections::HashSet;
let mut v = HashSet::new();
assert_eq!(v.len(), 0);
v.insert(1);
assert_eq!(v.len(), 1);
1.0.0 · sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true
if the set contains no elements.
Examples
use std::collections::HashSet;
let mut v = HashSet::new();
assert!(v.is_empty());
v.insert(1);
assert!(!v.is_empty());
1.9.0 · sourcepub fn hasher(&self) -> &S
pub fn hasher(&self) -> &S
Returns a reference to the set’s BuildHasher
.
Examples
use std::collections::HashSet;
use std::collections::hash_map::RandomState;
let hasher = RandomState::new();
let set: HashSet<i32> = HashSet::with_hasher(hasher);
let hasher: &RandomState = set.hasher();
1.0.0 · sourcepub fn difference(&'a self, other: &'a HashSet<T, S>) -> Difference<'a, T, S>
pub fn difference(&'a self, other: &'a HashSet<T, S>) -> Difference<'a, T, S>
Visits the values representing the difference,
i.e., the values that are in self
but not in other
.
Examples
use std::collections::HashSet;
let a = HashSet::from([1, 2, 3]);
let b = HashSet::from([4, 2, 3, 4]);
// Can be seen as `a - b`.
for x in a.difference(&b) {
println!("{}", x); // Print 1
}
let diff: HashSet<_> = a.difference(&b).collect();
assert_eq!(diff, [1].iter().collect());
// Note that difference is not symmetric,
// and `b - a` means something else:
let diff: HashSet<_> = b.difference(&a).collect();
assert_eq!(diff, [4].iter().collect());
1.0.0 · sourcepub fn symmetric_difference(
&'a self,
other: &'a HashSet<T, S>
) -> SymmetricDifference<'a, T, S>
pub fn symmetric_difference(
&'a self,
other: &'a HashSet<T, S>
) -> SymmetricDifference<'a, T, S>
Visits the values representing the symmetric difference,
i.e., the values that are in self
or in other
but not in both.
Examples
use std::collections::HashSet;
let a = HashSet::from([1, 2, 3]);
let b = HashSet::from([4, 2, 3, 4]);
// Print 1, 4 in arbitrary order.
for x in a.symmetric_difference(&b) {
println!("{}", x);
}
let diff1: HashSet<_> = a.symmetric_difference(&b).collect();
let diff2: HashSet<_> = b.symmetric_difference(&a).collect();
assert_eq!(diff1, diff2);
assert_eq!(diff1, [1, 4].iter().collect());
1.0.0 · sourcepub fn intersection(
&'a self,
other: &'a HashSet<T, S>
) -> Intersection<'a, T, S>
pub fn intersection(
&'a self,
other: &'a HashSet<T, S>
) -> Intersection<'a, T, S>
Visits the values representing the intersection,
i.e., the values that are both in self
and other
.
Examples
use std::collections::HashSet;
let a = HashSet::from([1, 2, 3]);
let b = HashSet::from([4, 2, 3, 4]);
// Print 2, 3 in arbitrary order.
for x in a.intersection(&b) {
println!("{}", x);
}
let intersection: HashSet<_> = a.intersection(&b).collect();
assert_eq!(intersection, [2, 3].iter().collect());
1.0.0 · sourcepub fn union(&'a self, other: &'a HashSet<T, S>) -> Union<'a, T, S>
pub fn union(&'a self, other: &'a HashSet<T, S>) -> Union<'a, T, S>
Visits the values representing the union,
i.e., all the values in self
or other
, without duplicates.
Examples
use std::collections::HashSet;
let a = HashSet::from([1, 2, 3]);
let b = HashSet::from([4, 2, 3, 4]);
// Print 1, 2, 3, 4 in arbitrary order.
for x in a.union(&b) {
println!("{}", x);
}
let union: HashSet<_> = a.union(&b).collect();
assert_eq!(union, [1, 2, 3, 4].iter().collect());
1.0.0 · sourcepub fn contains<Q>(&self, value: &Q) -> bool where
T: Borrow<Q>,
Q: Hash + Eq + ?Sized,
pub fn contains<Q>(&self, value: &Q) -> bool where
T: Borrow<Q>,
Q: Hash + Eq + ?Sized,
Returns true
if the set contains a value.
The value may be any borrowed form of the set’s value type, but
Hash
and Eq
on the borrowed form must match those for
the value type.
Examples
use std::collections::HashSet;
let set = HashSet::from([1, 2, 3]);
assert_eq!(set.contains(&1), true);
assert_eq!(set.contains(&4), false);
1.9.0 · sourcepub fn get<Q>(&self, value: &Q) -> Option<&T> where
T: Borrow<Q>,
Q: Hash + Eq + ?Sized,
pub fn get<Q>(&self, value: &Q) -> Option<&T> where
T: Borrow<Q>,
Q: Hash + Eq + ?Sized,
Returns a reference to the value in the set, if any, that is equal to the given value.
The value may be any borrowed form of the set’s value type, but
Hash
and Eq
on the borrowed form must match those for
the value type.
Examples
use std::collections::HashSet;
let set = HashSet::from([1, 2, 3]);
assert_eq!(set.get(&2), Some(&2));
assert_eq!(set.get(&4), None);
1.0.0 · sourcepub fn is_disjoint(&self, other: &HashSet<T, S>) -> bool
pub fn is_disjoint(&self, other: &HashSet<T, S>) -> bool
Returns true
if self
has no elements in common with other
.
This is equivalent to checking for an empty intersection.
Examples
use std::collections::HashSet;
let a = HashSet::from([1, 2, 3]);
let mut b = HashSet::new();
assert_eq!(a.is_disjoint(&b), true);
b.insert(4);
assert_eq!(a.is_disjoint(&b), true);
b.insert(1);
assert_eq!(a.is_disjoint(&b), false);
1.0.0 · sourcepub fn is_subset(&self, other: &HashSet<T, S>) -> bool
pub fn is_subset(&self, other: &HashSet<T, S>) -> bool
Returns true
if the set is a subset of another,
i.e., other
contains at least all the values in self
.
Examples
use std::collections::HashSet;
let sup = HashSet::from([1, 2, 3]);
let mut set = HashSet::new();
assert_eq!(set.is_subset(&sup), true);
set.insert(2);
assert_eq!(set.is_subset(&sup), true);
set.insert(4);
assert_eq!(set.is_subset(&sup), false);
1.0.0 · sourcepub fn is_superset(&self, other: &HashSet<T, S>) -> bool
pub fn is_superset(&self, other: &HashSet<T, S>) -> bool
Returns true
if the set is a superset of another,
i.e., self
contains at least all the values in other
.
Examples
use std::collections::HashSet;
let sub = HashSet::from([1, 2]);
let mut set = HashSet::new();
assert_eq!(set.is_superset(&sub), false);
set.insert(0);
set.insert(1);
assert_eq!(set.is_superset(&sub), false);
set.insert(2);
assert_eq!(set.is_superset(&sub), true);
Trait Implementations
sourceimpl<T, Codec> Debug for ObservableHashSet<T, Codec> where
T: Debug,
impl<T, Codec> Debug for ObservableHashSet<T, Codec> where
T: Debug,
sourceimpl<T, Codec> Default for ObservableHashSet<T, Codec> where
T: Clone + RemoteSend,
Codec: Codec,
impl<T, Codec> Default for ObservableHashSet<T, Codec> where
T: Clone + RemoteSend,
Codec: Codec,
sourceimpl<T, Codec> Deref for ObservableHashSet<T, Codec>
impl<T, Codec> Deref for ObservableHashSet<T, Codec>
sourceimpl<T, Codec> Extend<T> for ObservableHashSet<T, Codec> where
T: RemoteSend + Eq + Hash + Clone,
Codec: Codec,
impl<T, Codec> Extend<T> for ObservableHashSet<T, Codec> where
T: RemoteSend + Eq + Hash + Clone,
Codec: Codec,
sourcefn extend<I: IntoIterator<Item = T>>(&mut self, iter: I)
fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I)
Extends a collection with the contents of an iterator. Read more
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Extends a collection with exactly one element.
sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
sourceimpl<T, Codec> From<HashSet<T, RandomState>> for ObservableHashSet<T, Codec> where
T: Clone + RemoteSend,
Codec: Codec,
impl<T, Codec> From<HashSet<T, RandomState>> for ObservableHashSet<T, Codec> where
T: Clone + RemoteSend,
Codec: Codec,
sourceimpl<T, Codec> From<ObservableHashSet<T, Codec>> for HashSet<T>
impl<T, Codec> From<ObservableHashSet<T, Codec>> for HashSet<T>
sourcefn from(ohs: ObservableHashSet<T, Codec>) -> Self
fn from(ohs: ObservableHashSet<T, Codec>) -> Self
Performs the conversion.
Auto Trait Implementations
impl<T, Codec = Default> !RefUnwindSafe for ObservableHashSet<T, Codec>
impl<T, Codec> Send for ObservableHashSet<T, Codec> where
Codec: Send,
T: Send,
impl<T, Codec> Sync for ObservableHashSet<T, Codec> where
Codec: Send,
T: Send + Sync,
impl<T, Codec> Unpin for ObservableHashSet<T, Codec> where
T: Unpin,
impl<T, Codec = Default> !UnwindSafe for ObservableHashSet<T, Codec>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more