Method
from
(v: twilight_model::channel::VideoQualityMode)
Source from the content-addressed store, hash-verified
| 14 | |
| 15 | impl From<twilight_model::channel::VideoQualityMode> for VideoQualityMode { |
| 16 | fn from(v: twilight_model::channel::VideoQualityMode) -> Self { |
| 17 | match v { |
| 18 | twilight_model::channel::VideoQualityMode::Auto => Self::Auto, |
| 19 | twilight_model::channel::VideoQualityMode::Full => Self::Full, |
| 20 | _ => todo!(), |
| 21 | } |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | impl From<VideoQualityMode> for twilight_model::channel::VideoQualityMode { |
Callers
nothing calls this directly
Tested by
no test coverage detected