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