Struct ruma_client_api::filter::RoomEventFilter
source · [−]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,
pub related_by_rel_types: &'a [RelationType],
pub related_by_senders: &'a [OwnedUserId],
}Expand description
Filters to be applied to room events.
Fields
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: LazyLoadOptionsOptions to control lazy-loading of membership events.
Defaults to LazyLoadOptions::Disabled.
unstable-msc3440 only.A list of relation types to include.
An event A is included in the filter only if there exists another event B which relates to
A with a rel_type which is defined in the list.
unstable-msc3440 only.A list of senders to include.
An event A is included in the filter only if there exists another event B which relates to A, and which has a sender which is in the list.
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> 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.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
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
