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::{
18 RequestedRequiredStates,
19 store::{AvatarCache, ambiguity_map::AmbiguityCache},
20};
21
22pub mod display_name;
23pub mod msc4186;
24pub mod sync_v2;
25
26/// A classical set of data used by some processors in this module.
27pub struct RoomCreationData<'a> {
28 room_id: &'a RoomId,
29 requested_required_states: &'a RequestedRequiredStates,
30 ambiguity_cache: &'a mut AmbiguityCache,
31 avatar_cache: &'a mut AvatarCache,
32}
33
34impl<'a> RoomCreationData<'a> {
35 pub fn new(
36 room_id: &'a RoomId,
37 requested_required_states: &'a RequestedRequiredStates,
38 ambiguity_cache: &'a mut AmbiguityCache,
39 avatar_cache: &'a mut AvatarCache,
40 ) -> Self {
41 Self { room_id, requested_required_states, ambiguity_cache, avatar_cache }
42 }
43}