Struct ruma_client_api::filter::IncomingFilter
source · [−]#[non_exhaustive]pub struct IncomingFilter {
pub not_types: Vec<String>,
pub limit: Option<UInt>,
pub senders: Option<Vec<OwnedUserId>>,
pub types: Option<Vec<String>>,
pub not_senders: Vec<OwnedUserId>,
}
Expand description
‘Incoming’ variant of Filter.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.not_types: Vec<String>
A list of event types to exclude.
If this list is absent then no event types are excluded. A matching type will be excluded even if it is listed in the ‘types’ filter. A ‘*’ can be used as a wildcard to match any sequence of characters.
limit: Option<UInt>
The maximum number of events to return.
senders: Option<Vec<OwnedUserId>>
A list of senders IDs to include.
If this list is absent then all senders are included.
types: Option<Vec<String>>
A list of event types to include.
If this list is absent then all event types are included. A ‘*’ can be used as a wildcard to match any sequence of characters.
not_senders: Vec<OwnedUserId>
A list of sender IDs to exclude.
If this list is absent then no senders are excluded. A matching sender will be excluded even if it is listed in the ‘senders’ filter.
Implementations
sourceimpl IncomingFilter
impl IncomingFilter
Trait Implementations
sourceimpl CanBeEmpty for IncomingFilter
impl CanBeEmpty for IncomingFilter
sourceimpl Clone for IncomingFilter
impl Clone for IncomingFilter
sourcefn clone(&self) -> IncomingFilter
fn clone(&self) -> IncomingFilter
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 Debug for IncomingFilter
impl Debug for IncomingFilter
sourceimpl Default for IncomingFilter
impl Default for IncomingFilter
sourcefn default() -> IncomingFilter
fn default() -> IncomingFilter
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for IncomingFilter
impl<'de> Deserialize<'de> for IncomingFilter
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for IncomingFilter
impl Serialize for IncomingFilter
Auto Trait Implementations
impl RefUnwindSafe for IncomingFilter
impl Send for IncomingFilter
impl Sync for IncomingFilter
impl Unpin for IncomingFilter
impl UnwindSafe for IncomingFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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>
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