pub struct CellFragment {
pub cell_fragment_id: u32,
pub first_occurrence: bool,
pub last_occurrence: bool,
pub center: Option<CellCenter>,
pub delivery_system_ids: Vec<u32>,
pub new_delivery_systems: Vec<NewDeliverySystem>,
pub obsolescent_delivery_systems: Vec<ObsolescentDeliverySystem>,
}Expand description
A cell fragment entry (Table 11d, §5.2.11.3).
Fields§
§cell_fragment_id: u32cell_fragment_id (32 bits).
first_occurrence: boolfirst_occurrence.
last_occurrence: boollast_occurrence.
center: Option<CellCenter>Centre coordinates (present iff first_occurrence).
delivery_system_ids: Vec<u32>delivery_system_id entries (each 32 bits).
new_delivery_systems: Vec<NewDeliverySystem>New delivery system entries.
obsolescent_delivery_systems: Vec<ObsolescentDeliverySystem>Obsolescent delivery system entries.
Trait Implementations§
Source§impl Clone for CellFragment
impl Clone for CellFragment
Source§fn clone(&self) -> CellFragment
fn clone(&self) -> CellFragment
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 CellFragment
impl Debug for CellFragment
impl Eq for CellFragment
Source§impl PartialEq for CellFragment
impl PartialEq for CellFragment
Source§fn eq(&self, other: &CellFragment) -> bool
fn eq(&self, other: &CellFragment) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CellFragment
impl Serialize for CellFragment
impl StructuralPartialEq for CellFragment
Auto Trait Implementations§
impl Freeze for CellFragment
impl RefUnwindSafe for CellFragment
impl Send for CellFragment
impl Sync for CellFragment
impl Unpin for CellFragment
impl UnsafeUnpin for CellFragment
impl UnwindSafe for CellFragment
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