pub struct CellListDescriptor {
pub entries: Vec<CellListEntry>,
}Expand description
Cell List Descriptor.
Fields§
§entries: Vec<CellListEntry>Outer cell entries in wire order.
Trait Implementations§
Source§impl Clone for CellListDescriptor
impl Clone for CellListDescriptor
Source§fn clone(&self) -> CellListDescriptor
fn clone(&self) -> CellListDescriptor
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 CellListDescriptor
impl Debug for CellListDescriptor
Source§impl<'a> Descriptor<'a> for CellListDescriptor
impl<'a> Descriptor<'a> for CellListDescriptor
Source§impl<'a> DescriptorDef<'a> for CellListDescriptor
impl<'a> DescriptorDef<'a> for CellListDescriptor
impl Eq for CellListDescriptor
Source§impl<'a> From<CellListDescriptor> for AnyDescriptor<'a>
impl<'a> From<CellListDescriptor> for AnyDescriptor<'a>
Source§fn from(d: CellListDescriptor) -> Self
fn from(d: CellListDescriptor) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for CellListDescriptor
impl<'a> Parse<'a> for CellListDescriptor
Source§impl PartialEq for CellListDescriptor
impl PartialEq for CellListDescriptor
Source§fn eq(&self, other: &CellListDescriptor) -> bool
fn eq(&self, other: &CellListDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CellListDescriptor
impl Serialize for CellListDescriptor
Source§impl Serialize for CellListDescriptor
impl Serialize for CellListDescriptor
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 CellListDescriptor
Auto Trait Implementations§
impl Freeze for CellListDescriptor
impl RefUnwindSafe for CellListDescriptor
impl Send for CellListDescriptor
impl Sync for CellListDescriptor
impl Unpin for CellListDescriptor
impl UnsafeUnpin for CellListDescriptor
impl UnwindSafe for CellListDescriptor
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