pub struct AllowAllSubscriptionFilter {}
Expand description
Allows all subscriptions
Trait Implementations
sourceimpl Clone for AllowAllSubscriptionFilter
impl Clone for AllowAllSubscriptionFilter
sourcefn clone(&self) -> AllowAllSubscriptionFilter
fn clone(&self) -> AllowAllSubscriptionFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for AllowAllSubscriptionFilter
impl Default for AllowAllSubscriptionFilter
sourcefn default() -> AllowAllSubscriptionFilter
fn default() -> AllowAllSubscriptionFilter
Returns the “default value” for a type. Read more
sourceimpl TopicSubscriptionFilter for AllowAllSubscriptionFilter
impl TopicSubscriptionFilter for AllowAllSubscriptionFilter
sourcefn can_subscribe(&mut self, _: &TopicHash) -> bool
fn can_subscribe(&mut self, _: &TopicHash) -> bool
Returns true iff the topic is of interest and we can subscribe to it.
sourcefn filter_incoming_subscriptions<'a>(
&mut self,
subscriptions: &'a [GossipsubSubscription],
currently_subscribed_topics: &BTreeSet<TopicHash>
) -> Result<HashSet<&'a GossipsubSubscription>, String>
fn filter_incoming_subscriptions<'a>(
&mut self,
subscriptions: &'a [GossipsubSubscription],
currently_subscribed_topics: &BTreeSet<TopicHash>
) -> Result<HashSet<&'a GossipsubSubscription>, String>
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
sourcefn filter_incoming_subscription_set<'a>(
&mut self,
subscriptions: HashSet<&'a GossipsubSubscription>,
_currently_subscribed_topics: &BTreeSet<TopicHash>
) -> Result<HashSet<&'a GossipsubSubscription>, String>
fn filter_incoming_subscription_set<'a>(
&mut self,
subscriptions: HashSet<&'a GossipsubSubscription>,
_currently_subscribed_topics: &BTreeSet<TopicHash>
) -> Result<HashSet<&'a GossipsubSubscription>, String>
Filters a set of deduplicated subscriptions
By default this filters the elements based on Self::allow_incoming_subscription
. Read more
sourcefn allow_incoming_subscription(
&mut self,
subscription: &GossipsubSubscription
) -> bool
fn allow_incoming_subscription(
&mut self,
subscription: &GossipsubSubscription
) -> bool
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 RefUnwindSafe for AllowAllSubscriptionFilter
impl Send for AllowAllSubscriptionFilter
impl Sync for AllowAllSubscriptionFilter
impl Unpin for AllowAllSubscriptionFilter
impl UnwindSafe for AllowAllSubscriptionFilter
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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more