pub struct ChangelogEntry<'a> {
pub package: Cow<'a, str>,
pub version: Cow<'a, str>,
pub distributions: Vec<Cow<'a, str>>,
pub urgency: Cow<'a, str>,
pub details: Cow<'a, str>,
pub maintainer_name: Cow<'a, str>,
pub maintainer_email: Cow<'a, str>,
pub date: DateTime<Local>,
}Fields§
§package: Cow<'a, str>§version: Cow<'a, str>§distributions: Vec<Cow<'a, str>>§urgency: Cow<'a, str>§details: Cow<'a, str>§maintainer_name: Cow<'a, str>§maintainer_email: Cow<'a, str>§date: DateTime<Local>Implementations§
Trait Implementations§
Source§impl<'a> Clone for ChangelogEntry<'a>
impl<'a> Clone for ChangelogEntry<'a>
Source§fn clone(&self) -> ChangelogEntry<'a>
fn clone(&self) -> ChangelogEntry<'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 moreAuto Trait Implementations§
impl<'a> Freeze for ChangelogEntry<'a>
impl<'a> RefUnwindSafe for ChangelogEntry<'a>
impl<'a> Send for ChangelogEntry<'a>
impl<'a> Sync for ChangelogEntry<'a>
impl<'a> Unpin for ChangelogEntry<'a>
impl<'a> UnwindSafe for ChangelogEntry<'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