pub struct MailboxList<'a>(pub Vec<MailboxRef<'a>>);Expand description
A non-empty list of mailboxes.
Tuple Fields§
§0: Vec<MailboxRef<'a>>Trait Implementations§
Source§impl<'a> Clone for MailboxList<'a>
impl<'a> Clone for MailboxList<'a>
Source§fn clone(&self) -> MailboxList<'a>
fn clone(&self) -> MailboxList<'a>
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<'a> ContainsUtf8 for MailboxList<'a>
impl<'a> ContainsUtf8 for MailboxList<'a>
fn contains_utf8(&self) -> bool
Source§impl<'a> Debug for MailboxList<'a>
impl<'a> Debug for MailboxList<'a>
Source§impl<'a> IntoBoundedStatic for MailboxList<'a>
impl<'a> IntoBoundedStatic for MailboxList<'a>
Source§type Static = MailboxList<'static>
type Static = MailboxList<'static>
The target type is bounded by the
'static lifetime.Source§fn into_static(self) -> Self::Static
fn into_static(self) -> Self::Static
Convert an owned
T into an owned T such that T: 'static.Source§impl<'a> PartialEq for MailboxList<'a>
impl<'a> PartialEq for MailboxList<'a>
Source§fn eq(&self, other: &MailboxList<'a>) -> bool
fn eq(&self, other: &MailboxList<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for MailboxList<'a>
Source§impl<'a> ToBoundedStatic for MailboxList<'a>
impl<'a> ToBoundedStatic for MailboxList<'a>
Auto Trait Implementations§
impl<'a> Freeze for MailboxList<'a>
impl<'a> RefUnwindSafe for MailboxList<'a>
impl<'a> Send for MailboxList<'a>
impl<'a> Sync for MailboxList<'a>
impl<'a> Unpin for MailboxList<'a>
impl<'a> UnsafeUnpin for MailboxList<'a>
impl<'a> UnwindSafe for MailboxList<'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