pub struct ServiceAnnouncementsView<'a> {
pub service_announcements: Vec<ServiceAnnouncement<'a>>,
}Fields§
§service_announcements: Vec<ServiceAnnouncement<'a>>Trait Implementations§
Source§impl<'a> Clone for ServiceAnnouncementsView<'a>
impl<'a> Clone for ServiceAnnouncementsView<'a>
Source§fn clone(&self) -> ServiceAnnouncementsView<'a>
fn clone(&self) -> ServiceAnnouncementsView<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for ServiceAnnouncementsView<'a>
impl<'a> Debug for ServiceAnnouncementsView<'a>
Source§impl<'a> Default for ServiceAnnouncementsView<'a>
impl<'a> Default for ServiceAnnouncementsView<'a>
Source§fn default() -> ServiceAnnouncementsView<'a>
fn default() -> ServiceAnnouncementsView<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> MessageRead<'a> for ServiceAnnouncementsView<'a>
impl<'a> MessageRead<'a> for ServiceAnnouncementsView<'a>
Source§fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
Constructs an instance of
Self by reading from the given bytes
via the given reader. Read moreSource§impl<'a> MessageWrite for ServiceAnnouncementsView<'a>
impl<'a> MessageWrite for ServiceAnnouncementsView<'a>
Source§impl<'a> PartialEq for ServiceAnnouncementsView<'a>
impl<'a> PartialEq for ServiceAnnouncementsView<'a>
Source§fn eq(&self, other: &ServiceAnnouncementsView<'a>) -> bool
fn eq(&self, other: &ServiceAnnouncementsView<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for ServiceAnnouncementsView<'a>
Auto Trait Implementations§
impl<'a> Freeze for ServiceAnnouncementsView<'a>
impl<'a> RefUnwindSafe for ServiceAnnouncementsView<'a>
impl<'a> Send for ServiceAnnouncementsView<'a>
impl<'a> Sync for ServiceAnnouncementsView<'a>
impl<'a> Unpin for ServiceAnnouncementsView<'a>
impl<'a> UnwindSafe for ServiceAnnouncementsView<'a>
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