pub struct NetworkChangeCell {
pub cell_id: u16,
pub changes: Vec<NetworkChange>,
}Expand description
A cell in the network_change_notify outer loop.
Fields§
§cell_id: u16cell_id(16).
changes: Vec<NetworkChange>The cell’s change entries.
Trait Implementations§
Source§impl Clone for NetworkChangeCell
impl Clone for NetworkChangeCell
Source§fn clone(&self) -> NetworkChangeCell
fn clone(&self) -> NetworkChangeCell
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 NetworkChangeCell
impl Debug for NetworkChangeCell
impl Eq for NetworkChangeCell
Source§impl PartialEq for NetworkChangeCell
impl PartialEq for NetworkChangeCell
Source§fn eq(&self, other: &NetworkChangeCell) -> bool
fn eq(&self, other: &NetworkChangeCell) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NetworkChangeCell
impl Serialize for NetworkChangeCell
impl StructuralPartialEq for NetworkChangeCell
Auto Trait Implementations§
impl Freeze for NetworkChangeCell
impl RefUnwindSafe for NetworkChangeCell
impl Send for NetworkChangeCell
impl Sync for NetworkChangeCell
impl Unpin for NetworkChangeCell
impl UnsafeUnpin for NetworkChangeCell
impl UnwindSafe for NetworkChangeCell
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