Struct ruma_client_api::filter::RoomEventFilter
source · [−]#[non_exhaustive]pub struct RoomEventFilter<'a> {
pub not_types: &'a [String],
pub not_rooms: &'a [OwnedRoomId],
pub limit: Option<UInt>,
pub rooms: Option<&'a [OwnedRoomId]>,
pub not_senders: &'a [OwnedUserId],
pub senders: Option<&'a [OwnedUserId]>,
pub types: Option<&'a [String]>,
pub url_filter: Option<UrlFilter>,
pub lazy_load_options: LazyLoadOptions,
}
Expand description
Filters to be applied to room events.
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: &'a [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.
not_rooms: &'a [OwnedRoomId]
A list of room IDs to exclude.
If this list is absent then no rooms are excluded. A matching room will be excluded even if it is listed in the ‘rooms’ filter.
limit: Option<UInt>
The maximum number of events to return.
rooms: Option<&'a [OwnedRoomId]>
A list of room IDs to include.
If this list is absent then all rooms are included.
not_senders: &'a [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.
senders: Option<&'a [OwnedUserId]>
A list of senders IDs to include.
If this list is absent then all senders are included.
types: Option<&'a [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.
url_filter: Option<UrlFilter>
Controls whether to include events with a URL key in their content.
None
: No filteringSome(EventsWithUrl)
: Only events with a URLSome(EventsWithoutUrl)
: Only events without a URL
lazy_load_options: LazyLoadOptions
Options to control lazy-loading of membership events.
Defaults to LazyLoadOptions::Disabled
.
Implementations
sourceimpl<'a> RoomEventFilter<'a>
impl<'a> RoomEventFilter<'a>
Trait Implementations
sourceimpl<'a> CanBeEmpty for RoomEventFilter<'a>
impl<'a> CanBeEmpty for RoomEventFilter<'a>
sourceimpl<'a> Clone for RoomEventFilter<'a>
impl<'a> Clone for RoomEventFilter<'a>
sourcefn clone(&self) -> RoomEventFilter<'a>
fn clone(&self) -> RoomEventFilter<'a>
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<'a> Debug for RoomEventFilter<'a>
impl<'a> Debug for RoomEventFilter<'a>
sourceimpl<'a> Default for RoomEventFilter<'a>
impl<'a> Default for RoomEventFilter<'a>
sourcefn default() -> RoomEventFilter<'a>
fn default() -> RoomEventFilter<'a>
Returns the “default value” for a type. Read more
sourceimpl<'a> Serialize for RoomEventFilter<'a>
impl<'a> Serialize for RoomEventFilter<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for RoomEventFilter<'a>
impl<'a> Send for RoomEventFilter<'a>
impl<'a> Sync for RoomEventFilter<'a>
impl<'a> Unpin for RoomEventFilter<'a>
impl<'a> UnwindSafe for RoomEventFilter<'a>
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