#[repr(C, packed(1))]pub struct dvb_desc_sat {
pub type_: u8,
pub length: u8,
pub next: *mut dvb_desc,
pub frequency: u32,
pub orbit: u16,
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>,
pub __bindgen_anon_1: dvb_desc_sat__bindgen_ty_1,
}Fields§
§type_: u8§length: u8§next: *mut dvb_desc§frequency: u32§orbit: u16§_bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>§__bindgen_anon_1: dvb_desc_sat__bindgen_ty_1Implementations§
Source§impl dvb_desc_sat
impl dvb_desc_sat
pub fn modulation_type(&self) -> u8
pub fn set_modulation_type(&mut self, val: u8)
pub fn modulation_system(&self) -> u8
pub fn set_modulation_system(&mut self, val: u8)
pub fn roll_off(&self) -> u8
pub fn set_roll_off(&mut self, val: u8)
pub fn polarization(&self) -> u8
pub fn set_polarization(&mut self, val: u8)
pub fn west_east(&self) -> u8
pub fn set_west_east(&mut self, val: u8)
pub fn new_bitfield_1( modulation_type: u8, modulation_system: u8, roll_off: u8, polarization: u8, west_east: u8, ) -> __BindgenBitfieldUnit<[u8; 1], u8>
Trait Implementations§
Source§impl Clone for dvb_desc_sat
impl Clone for dvb_desc_sat
Source§fn clone(&self) -> dvb_desc_sat
fn clone(&self) -> dvb_desc_sat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for dvb_desc_sat
Auto Trait Implementations§
impl !Send for dvb_desc_sat
impl !Sync for dvb_desc_sat
impl Freeze for dvb_desc_sat
impl RefUnwindSafe for dvb_desc_sat
impl Unpin for dvb_desc_sat
impl UnsafeUnpin for dvb_desc_sat
impl UnwindSafe for dvb_desc_sat
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