pub struct CellFrequencyLinkDescriptor {
pub entries: Vec<CellFrequencyLinkEntry>,
}Expand description
Cell Frequency Link Descriptor.
Fields§
§entries: Vec<CellFrequencyLinkEntry>Outer cell entries in wire order.
Trait Implementations§
Source§impl Clone for CellFrequencyLinkDescriptor
impl Clone for CellFrequencyLinkDescriptor
Source§fn clone(&self) -> CellFrequencyLinkDescriptor
fn clone(&self) -> CellFrequencyLinkDescriptor
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 CellFrequencyLinkDescriptor
impl Debug for CellFrequencyLinkDescriptor
Source§impl<'a> Descriptor<'a> for CellFrequencyLinkDescriptor
impl<'a> Descriptor<'a> for CellFrequencyLinkDescriptor
Source§impl<'a> DescriptorDef<'a> for CellFrequencyLinkDescriptor
impl<'a> DescriptorDef<'a> for CellFrequencyLinkDescriptor
impl Eq for CellFrequencyLinkDescriptor
Source§impl<'a> From<CellFrequencyLinkDescriptor> for AnyDescriptor<'a>
impl<'a> From<CellFrequencyLinkDescriptor> for AnyDescriptor<'a>
Source§fn from(d: CellFrequencyLinkDescriptor) -> Self
fn from(d: CellFrequencyLinkDescriptor) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for CellFrequencyLinkDescriptor
impl<'a> Parse<'a> for CellFrequencyLinkDescriptor
Source§impl PartialEq for CellFrequencyLinkDescriptor
impl PartialEq for CellFrequencyLinkDescriptor
Source§fn eq(&self, other: &CellFrequencyLinkDescriptor) -> bool
fn eq(&self, other: &CellFrequencyLinkDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CellFrequencyLinkDescriptor
impl Serialize for CellFrequencyLinkDescriptor
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for CellFrequencyLinkDescriptor
Auto Trait Implementations§
impl Freeze for CellFrequencyLinkDescriptor
impl RefUnwindSafe for CellFrequencyLinkDescriptor
impl Send for CellFrequencyLinkDescriptor
impl Sync for CellFrequencyLinkDescriptor
impl Unpin for CellFrequencyLinkDescriptor
impl UnsafeUnpin for CellFrequencyLinkDescriptor
impl UnwindSafe for CellFrequencyLinkDescriptor
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