(value: alignment::Vertical)
| 150 | } |
| 151 | |
| 152 | fn vertical_label(value: alignment::Vertical) -> &'static str { |
| 153 | match value { |
| 154 | alignment::Vertical::Top => "Top", |
| 155 | alignment::Vertical::Center => "Center", |
| 156 | alignment::Vertical::Bottom => "Bottom", |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | fn horizontal_label(value: alignment::Horizontal) -> &'static str { |
| 161 | match value { |
nothing calls this directly
no outgoing calls
no test coverage detected