pub struct ListMatching {
pub matched: Pooled<Vec<Pooled<Vec<Path>>>>,
pub referrals: Pooled<Vec<Referral>>,
}
Fields§
§matched: Pooled<Vec<Pooled<Vec<Path>>>>
§referrals: Pooled<Vec<Referral>>
Trait Implementations§
Source§impl Clone for ListMatching
impl Clone for ListMatching
Source§fn clone(&self) -> ListMatching
fn clone(&self) -> ListMatching
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 Debug for ListMatching
impl Debug for ListMatching
Source§impl Pack for ListMatching
impl Pack for ListMatching
fn encoded_len(&self) -> usize
fn encode(&self, buf: &mut impl BufMut) -> Result<(), PackError>
fn decode(buf: &mut impl Buf) -> Result<Self, PackError>
fn const_encoded_len() -> Option<usize>
fn decode_into(&mut self, buf: &mut impl Buf) -> Result<(), PackError>where
Self: Sized,
Source§impl PartialEq for ListMatching
impl PartialEq for ListMatching
impl Eq for ListMatching
impl StructuralPartialEq for ListMatching
Auto Trait Implementations§
impl Freeze for ListMatching
impl RefUnwindSafe for ListMatching
impl Send for ListMatching
impl Sync for ListMatching
impl Unpin for ListMatching
impl UnwindSafe for ListMatching
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.