rust_rcs_client/contact/mod.rs
1// Copyright 2023 宋昊文
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
15pub struct ContactKnownIdentities {
16 inner: Vec<String>,
17}
18
19impl ContactKnownIdentities {
20 pub fn new() -> ContactKnownIdentities {
21 ContactKnownIdentities { inner: Vec::new() }
22 }
23
24 pub fn add_identity(&mut self, identity: String) {
25 self.inner.push(identity)
26 }
27}
28
29impl PartialEq<str> for ContactKnownIdentities {
30 fn eq(&self, other: &str) -> bool {
31 for identity in self.inner.iter() {
32 if identity.eq_ignore_ascii_case(other) {
33 return true;
34 }
35 }
36 false
37 }
38}