Struct ruma_client_api::r0::filter::IncomingRoomFilter [−][src]
pub struct IncomingRoomFilter {
pub include_leave: bool,
pub account_data: IncomingRoomEventFilter,
pub timeline: IncomingRoomEventFilter,
pub ephemeral: IncomingRoomEventFilter,
pub state: IncomingRoomEventFilter,
pub not_rooms: Vec<RoomId>,
pub rooms: Option<Vec<RoomId>>,
}Expand description
‘Incoming’ variant of RoomFilter.
Fields
include_leave: boolInclude rooms that the user has left in the sync.
Defaults to false.
account_data: IncomingRoomEventFilterThe per user account data to include for rooms.
timeline: IncomingRoomEventFilterThe message and state update events to include for rooms.
ephemeral: IncomingRoomEventFilterThe events that aren’t recorded in the room history, e.g. typing and receipts, to include for rooms.
state: IncomingRoomEventFilterThe state events to include for rooms.
not_rooms: Vec<RoomId>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. This filter is applied before the filters in
ephemeral, state, timeline or account_data.
rooms: Option<Vec<RoomId>>A list of room IDs to include.
If this list is absent then all rooms are included. This filter is applied before the
filters in ephemeral, state, timeline or account_data.
Implementations
Trait Implementations
Returns the “default value” for a type. Read more
fn 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
Auto Trait Implementations
impl RefUnwindSafe for IncomingRoomFilterimpl Send for IncomingRoomFilterimpl Sync for IncomingRoomFilterimpl Unpin for IncomingRoomFilterimpl UnwindSafe for IncomingRoomFilterBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more