Skip to main content

CompressedAccountFilterSet

Struct CompressedAccountFilterSet 

Source
pub struct CompressedAccountFilterSet { /* private fields */ }
Expand description

Safe builder for cuckoo filters sent in subscribe requests.

Holds two parallel collections: a HashSet (exact source of truth for contains/len and the guard for writes) and a CuckooFilter (compact wire form). Writes go to both; serialization reads the filter. Strictly safer than a raw CuckooFilter, whose remove can silently evict the wrong fingerprint-colliding item.

Implementations§

Source§

impl CompressedAccountFilterSet

Source

pub fn with_capacity( max_capacity: usize, ) -> Result<CompressedAccountFilterSet, CuckooBuildError>

Empty map pre-sized for max_capacity items (both the HashSet and filter are allocated up front). Errors CuckooBuildError::CapacityOverflow if it can’t be allocated.

Source

pub fn insert(&mut self, key: Address) -> Result<bool, TableFullError>

Inserts a key. Ok(true) if newly added, Ok(false) if already present (idempotent). Errors TableFullError if the filter is saturated (map under-sized); state is unchanged on error.

Source

pub fn remove(&mut self, key: Address) -> bool

Removes a key; returns whether it was present. Safe unlike CuckooFilter::remove: checks the HashSet first and only touches the filter when the key genuinely exists.

Source

pub fn contains(&self, key: Address) -> bool

Exact membership (from the HashSet, no false positives), unlike CuckooFilter::contains.

Source

pub fn len(&self) -> usize

Returns the number of items in the map.

Source

pub fn capacity(&self) -> usize

Items the map can hold without reallocating (≥ the with_capacity argument; the HashSet rounds up). Useful for headroom checks before a batch of inserts.

Source

pub fn iter(&self) -> impl Iterator<Item = &[u8; 32]>

Iterates items in arbitrary HashSet order (no ordering guarantee).

Source

pub fn is_empty(&self) -> bool

Returns true if the map contains no items.

Source

pub const fn is_dirty(&self) -> bool

true if mutated since the last take_dirty (or construction); does not clear the flag.

Source

pub fn take_dirty(&mut self) -> bool

Returns the dirty flag and clears it. Call when transmitting: true → rebuild and send.

Source

pub fn to_proto(&self) -> CuckooFilter

Serializes the cuckoo filter to proto wire format (carries bucket geometry + hash seed).

Source

pub fn to_account_filter(&self) -> SubscribeRequestFilterAccounts

A SubscribeRequestFilterAccounts carrying only this cuckoo filter (no account list, owner, or predicates) — add it to a request under a name of your choosing.

Source

pub fn insert_into_subscribe_request( &mut self, req: &mut SubscribeRequest, name: &str, )

Inserts this filter into req.accounts under name (replacing any existing entry, preserving others) and marks the map clean.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<L> LayerExt<L> for L

Source§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in Layered.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more