Struct libp2p_gossipsub::subscription_filter::CallbackSubscriptionFilter [−][src]
Trait Implementations
impl<T> TopicSubscriptionFilter for CallbackSubscriptionFilter<T> where
T: FnMut(&TopicHash) -> bool,
impl<T> TopicSubscriptionFilter for CallbackSubscriptionFilter<T> where
T: FnMut(&TopicHash) -> bool,
Returns true iff the topic is of interest and we can subscribe to it.
Filters a list of incoming subscriptions and returns a filtered set
By default this deduplicates the subscriptions and calls
Self::filter_incoming_subscription_set
on the filtered set. Read more
Filters a set of deduplicated subscriptions
By default this filters the elements based on Self::allow_incoming_subscription
. Read more
Returns true iff we allow an incoming subscription. This is used by the default implementation of filter_incoming_subscription_set to decide whether to filter out a subscription or not. By default this uses can_subscribe to decide the same for incoming subscriptions as for outgoing ones. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for CallbackSubscriptionFilter<T> where
T: RefUnwindSafe,
impl<T> Send for CallbackSubscriptionFilter<T> where
T: Send,
impl<T> Sync for CallbackSubscriptionFilter<T> where
T: Sync,
impl<T> Unpin for CallbackSubscriptionFilter<T> where
T: Unpin,
impl<T> UnwindSafe for CallbackSubscriptionFilter<T> where
T: UnwindSafe,