pub enum GenericRelEntries<'a> {
RelEntries(RelEntries<'a>),
RelaEntries(RelaEntries<'a>),
}Variants§
RelEntries(RelEntries<'a>)
RelaEntries(RelaEntries<'a>)
Implementations§
Source§impl<'a> GenericRelEntries<'a>
impl<'a> GenericRelEntries<'a>
pub fn get(&self, index: usize) -> Result<GenericRel>
pub fn iter(&self) -> GenericRelEntriesIter<'a> ⓘ
Trait Implementations§
Source§impl<'a> Clone for GenericRelEntries<'a>
impl<'a> Clone for GenericRelEntries<'a>
Source§fn clone(&self) -> GenericRelEntries<'a>
fn clone(&self) -> GenericRelEntries<'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 GenericRelEntries<'a>
impl<'a> Debug for GenericRelEntries<'a>
Source§impl<'a, 'r> IntoIterator for &'r GenericRelEntries<'a>
impl<'a, 'r> IntoIterator for &'r GenericRelEntries<'a>
Source§impl<'a> IntoIterator for GenericRelEntries<'a>
impl<'a> IntoIterator for GenericRelEntries<'a>
Auto Trait Implementations§
impl<'a> Freeze for GenericRelEntries<'a>
impl<'a> RefUnwindSafe for GenericRelEntries<'a>
impl<'a> Send for GenericRelEntries<'a>
impl<'a> Sync for GenericRelEntries<'a>
impl<'a> Unpin for GenericRelEntries<'a>
impl<'a> UnwindSafe for GenericRelEntries<'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