Struct nostr_sdk::Filter

source ·
pub struct Filter {
Show 13 fields pub ids: Vec<String, Global>, pub authors: Vec<String, Global>, pub kinds: Vec<Kind, Global>, pub events: Vec<EventId, Global>, pub pubkeys: Vec<XOnlyPublicKey, Global>, pub hashtags: Vec<String, Global>, pub references: Vec<String, Global>, pub identifiers: Vec<String, Global>, pub search: Option<String>, pub since: Option<Timestamp>, pub until: Option<Timestamp>, pub limit: Option<usize>, pub generic_tags: BTreeMap<Alphabet, Vec<String, Global>, Global>,
}
Expand description

Subscription filters

Fields§

§ids: Vec<String, Global>

List of event ids or prefixes

§authors: Vec<String, Global>

List of pubkeys or prefixes

§kinds: Vec<Kind, Global>

List of a kind numbers

§events: Vec<EventId, Global>

#e tag

§pubkeys: Vec<XOnlyPublicKey, Global>

#p tag

§hashtags: Vec<String, Global>

#t tag

§references: Vec<String, Global>

#r tag

§identifiers: Vec<String, Global>

#d tag

§search: Option<String>

It’s a string describing a query in a human-readable form, i.e. “best nostr apps”

https://github.com/nostr-protocol/nips/blob/master/50.md

§since: Option<Timestamp>

An integer unix timestamp, events must be newer than this to pass

§until: Option<Timestamp>

An integer unix timestamp, events must be older than this to pass

§limit: Option<usize>

Maximum number of events to be returned in the initial query

§generic_tags: BTreeMap<Alphabet, Vec<String, Global>, Global>

Generic tag queries (NIP12)

Implementations§

source§

impl Filter

source

pub fn new() -> Filter

Create new empty Filter

source

pub fn from_json<S>(json: S) -> Result<Filter, Error>where S: Into<String>,

Deserialize from JSON string

source

pub fn as_json(&self) -> String

Serialize to JSON string

source

pub fn id<S>(self, id: S) -> Filterwhere S: Into<String>,

Add event id or prefix

source

pub fn ids<S>(self, ids: Vec<S, Global>) -> Filterwhere S: Into<String>,

Add event ids or prefixes

source

pub fn remove_ids<S>(self, ids: Vec<S, Global>) -> Filterwhere S: Into<String>,

Remove event ids or prefixes

source

pub fn author<S>(self, author: S) -> Filterwhere S: Into<String>,

Add author

source

pub fn authors<S>(self, authors: Vec<S, Global>) -> Filterwhere S: Into<String>,

Add authors

source

pub fn remove_authors<S>(self, authors: Vec<S, Global>) -> Filterwhere S: Into<String>,

Remove authors

source

pub fn kind(self, kind: Kind) -> Filter

Add kind

source

pub fn kinds(self, kinds: Vec<Kind, Global>) -> Filter

Add kinds

source

pub fn remove_kinds(self, kinds: Vec<Kind, Global>) -> Filter

Remove kinds

source

pub fn event(self, id: EventId) -> Filter

Add event

source

pub fn events(self, events: Vec<EventId, Global>) -> Filter

Add events

source

pub fn remove_events<S>(self, events: Vec<EventId, Global>) -> Filter

Remove events

source

pub fn pubkey(self, pubkey: XOnlyPublicKey) -> Filter

Add pubkey

source

pub fn pubkeys(self, pubkeys: Vec<XOnlyPublicKey, Global>) -> Filter

Add pubkeys

source

pub fn remove_pubkeys<S>(self, pubkeys: Vec<XOnlyPublicKey, Global>) -> Filter

Remove pubkeys

source

pub fn hashtag<S>(self, hashtag: S) -> Filterwhere S: Into<String>,

source

pub fn hashtags<S>(self, hashtags: Vec<S, Global>) -> Filterwhere S: Into<String>,

source

pub fn remove_hashtags<S>(self, hashtags: Vec<S, Global>) -> Filterwhere S: Into<String>,

Remove hashtags

source

pub fn reference<S>(self, reference: S) -> Filterwhere S: Into<String>,

source

pub fn references<S>(self, references: Vec<S, Global>) -> Filterwhere S: Into<String>,

source

pub fn remove_references<S>(self, references: Vec<S, Global>) -> Filterwhere S: Into<String>,

Remove references

source

pub fn identifier<S>(self, identifier: S) -> Filterwhere S: Into<String>,

source

pub fn identifiers<S>(self, identifiers: Vec<S, Global>) -> Filterwhere S: Into<String>,

source

pub fn remove_identifiers<S>(self, identifiers: Vec<S, Global>) -> Filterwhere S: Into<String>,

Remove identifiers

source

pub fn search<S>(self, value: S) -> Filterwhere S: Into<String>,

Add search field

Remove search

source

pub fn since(self, since: Timestamp) -> Filter

Add since unix timestamp

source

pub fn remove_since(self) -> Filter

Remove since

source

pub fn until(self, until: Timestamp) -> Filter

Add until unix timestamp

source

pub fn remove_until(self) -> Filter

Remove until

source

pub fn limit(self, limit: usize) -> Filter

Add limit

source

pub fn remove_limit(self) -> Filter

Remove limit

source

pub fn custom_tag<S>(self, tag: Alphabet, values: Vec<S, Global>) -> Filterwhere S: Into<String>,

Add custom tag

source

pub fn remove_custom_tag<S>( self, tag: Alphabet, values: Vec<S, Global> ) -> Filterwhere S: Into<String>,

Remove identifiers

Trait Implementations§

source§

impl Clone for Filter

source§

fn clone(&self) -> Filter

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Filter

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Filter

source§

fn default() -> Filter

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Filter

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<Filter, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq<Filter> for Filter

source§

fn eq(&self, other: &Filter) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Filter

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for Filter

source§

impl StructuralEq for Filter

source§

impl StructuralPartialEq for Filter

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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 Twhere 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> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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

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

§

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

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,