Skip to main content

matrix_sdk_base/response_processors/room/
mod.rs

1// Copyright 2025 The Matrix.org Foundation C.I.C.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use ruma::RoomId;
16
17use crate::{RequestedRequiredStates, store::ambiguity_map::AmbiguityCache};
18
19pub mod display_name;
20pub mod msc4186;
21pub mod sync_v2;
22
23/// A classical set of data used by some processors in this module.
24pub struct RoomCreationData<'a> {
25    room_id: &'a RoomId,
26    requested_required_states: &'a RequestedRequiredStates,
27    ambiguity_cache: &'a mut AmbiguityCache,
28}
29
30impl<'a> RoomCreationData<'a> {
31    pub fn new(
32        room_id: &'a RoomId,
33        requested_required_states: &'a RequestedRequiredStates,
34        ambiguity_cache: &'a mut AmbiguityCache,
35    ) -> Self {
36        Self { room_id, requested_required_states, ambiguity_cache }
37    }
38}