#[repr(C)]pub struct libvlc_module_description_t {
pub psz_name: *const c_char,
pub psz_shortname: *const c_char,
pub psz_longname: *const c_char,
pub psz_help: *const c_char,
pub p_next: *mut libvlc_module_description_t,
}
Fields§
§psz_name: *const c_char
§psz_shortname: *const c_char
§psz_longname: *const c_char
§psz_help: *const c_char
§p_next: *mut libvlc_module_description_t
Trait Implementations§
Source§impl Clone for libvlc_module_description_t
impl Clone for libvlc_module_description_t
Source§fn clone(&self) -> libvlc_module_description_t
fn clone(&self) -> libvlc_module_description_t
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for libvlc_module_description_t
Auto Trait Implementations§
impl Freeze for libvlc_module_description_t
impl RefUnwindSafe for libvlc_module_description_t
impl !Send for libvlc_module_description_t
impl !Sync for libvlc_module_description_t
impl Unpin for libvlc_module_description_t
impl UnwindSafe for libvlc_module_description_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more