pub struct CellFrequencyLinkEntry {
pub cell_id: u16,
pub frequency: u32,
pub subcells: Vec<CellFrequencyLinkSubcell>,
}Expand description
One cell-frequency association with its sub-cell list.
Fields§
§cell_id: u1616-bit cell_id.
frequency: u3232-bit frequency (10 Hz units).
subcells: Vec<CellFrequencyLinkSubcell>Transposer sub-cells for this cell.
Trait Implementations§
Source§impl Clone for CellFrequencyLinkEntry
impl Clone for CellFrequencyLinkEntry
Source§fn clone(&self) -> CellFrequencyLinkEntry
fn clone(&self) -> CellFrequencyLinkEntry
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 moreSource§impl Debug for CellFrequencyLinkEntry
impl Debug for CellFrequencyLinkEntry
impl Eq for CellFrequencyLinkEntry
Source§impl PartialEq for CellFrequencyLinkEntry
impl PartialEq for CellFrequencyLinkEntry
Source§fn eq(&self, other: &CellFrequencyLinkEntry) -> bool
fn eq(&self, other: &CellFrequencyLinkEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CellFrequencyLinkEntry
impl Serialize for CellFrequencyLinkEntry
impl StructuralPartialEq for CellFrequencyLinkEntry
Auto Trait Implementations§
impl Freeze for CellFrequencyLinkEntry
impl RefUnwindSafe for CellFrequencyLinkEntry
impl Send for CellFrequencyLinkEntry
impl Sync for CellFrequencyLinkEntry
impl Unpin for CellFrequencyLinkEntry
impl UnsafeUnpin for CellFrequencyLinkEntry
impl UnwindSafe for CellFrequencyLinkEntry
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