pub struct FeatureItem<'a> {
pub title: &'a str,
pub body: &'a str,
}Fields§
§title: &'a str§body: &'a strImplementations§
Trait Implementations§
Source§impl<'a> Clone for FeatureItem<'a>
impl<'a> Clone for FeatureItem<'a>
Source§fn clone(&self) -> FeatureItem<'a>
fn clone(&self) -> FeatureItem<'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> Debug for FeatureItem<'a>
impl<'a> Debug for FeatureItem<'a>
Source§impl<'a> PartialEq for FeatureItem<'a>
impl<'a> PartialEq for FeatureItem<'a>
Source§fn eq(&self, other: &FeatureItem<'a>) -> bool
fn eq(&self, other: &FeatureItem<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Copy for FeatureItem<'a>
impl<'a> Eq for FeatureItem<'a>
impl<'a> StructuralPartialEq for FeatureItem<'a>
Auto Trait Implementations§
impl<'a> Freeze for FeatureItem<'a>
impl<'a> RefUnwindSafe for FeatureItem<'a>
impl<'a> Send for FeatureItem<'a>
impl<'a> Sync for FeatureItem<'a>
impl<'a> Unpin for FeatureItem<'a>
impl<'a> UnsafeUnpin for FeatureItem<'a>
impl<'a> UnwindSafe for FeatureItem<'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