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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
use std::ops::Deref;
use std::fmt;
use ::render::Gazetta;
use ::model::Date;
use ::model::Entry;
use super::Index;
pub struct Page<'a, G>
where G: Gazetta + 'a,
G::PageMeta: 'a,
G::SiteMeta: 'a
{
pub title: &'a str,
pub description: Option<&'a str>,
pub date: Option<&'a Date>,
pub href: &'a str,
pub index: Option<Index<'a, G>>,
pub meta: &'a G::PageMeta,
pub content: Content<'a>,
}
impl<'a, G> Page<'a, G>
where G: Gazetta + 'a,
G::PageMeta: 'a,
G::SiteMeta: 'a
{
pub fn for_entry(entry: &'a Entry<G::PageMeta>) -> Self {
Page {
title: &entry.title,
date: entry.date.as_ref(),
description: entry.description.as_ref().map(|v| &**v),
content: Content {
data: &entry.content,
format: &entry.format,
},
href: &entry.name,
index: None,
meta: &entry.meta,
}
}
}
#[derive(Copy, Clone, Debug)]
pub struct Content<'a> {
pub data: &'a str,
pub format: &'a str,
}
impl<'a, G> Copy for Page<'a, G>
where G: Gazetta + 'a,
G::PageMeta: 'a,
G::SiteMeta: 'a
{
}
impl<'a, G> Clone for Page<'a, G>
where G: Gazetta + 'a,
G::PageMeta: 'a,
G::SiteMeta: 'a
{
fn clone(&self) -> Self {
*self
}
}
impl<'a, G> fmt::Debug for Page<'a, G>
where G: Gazetta + 'a,
G::PageMeta: fmt::Debug + 'a,
G::SiteMeta: 'a
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("Page")
.field("title", &self.title)
.field("date", &self.date)
.field("href", &self.href)
.field("index", &self.index)
.field("meta", &self.meta)
.field("content", &self.content)
.finish()
}
}
impl<'a, G> Deref for Page<'a, G>
where G: Gazetta + 'a,
G::PageMeta: 'a,
G::SiteMeta: 'a
{
type Target = G::PageMeta;
fn deref(&self) -> &Self::Target {
self.meta
}
}