// Copyright (C) 2018 Philippe Normand // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use glib::translate::*; use std::ffi::CStr; use crate::PlayerVisualization; impl PlayerVisualization { pub fn name(&self) -> &str { unsafe { CStr::from_ptr((*self.to_glib_none().0).name) .to_str() .unwrap() } } pub fn description(&self) -> &str { unsafe { CStr::from_ptr((*self.to_glib_none().0).description) .to_str() .unwrap() } } }