1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//! Content codec factory trait.
//!
//! Factories create codec instances for specific content types.
//! They are registered by modules during `init()` and stored in
//! [`ContentCodecFactoryStore`](crate::ContentCodecFactoryStore).
use crate::;
/// Factory for creating content codecs.
///
/// Each module that provides codec support implements this trait to
/// create codec instances for its supported content types.
///
/// # Thread Safety
///
/// Implementations must be `Send + Sync` for use across async tasks.
///
/// # Examples
///
/// ```ignore
/// struct Utf8CodecFactory;
///
/// impl ContentCodecFactory for Utf8CodecFactory {
/// fn create(&self, content_type: &ContentType) -> Option<Box<dyn ContentCodec>> {
/// if content_type.as_str() == "text/utf-8" {
/// Some(Box::new(Utf8Codec))
/// } else {
/// None
/// }
/// }
///
/// fn supported_content_types(&self) -> Vec<&str> {
/// vec!["text/utf-8"]
/// }
///
/// fn name(&self) -> &str { "utf-8" }
/// }
/// ```