pub struct PolicyRelease {
pub version: StandardsVersion,
pub timestamp: DateTime<Utc>,
pub closes: Vec<i32>,
pub epoch: Option<i32>,
pub author: Option<String>,
pub changes: Vec<String>,
}Expand description
A release of the Debian Policy
Fields§
§version: StandardsVersionThe version of the release
timestamp: DateTime<Utc>When the release was published
closes: Vec<i32>List of bug numbers closed by this release
epoch: Option<i32>The epoch of the release
The author of the release
changes: Vec<String>The changes made in this release
Trait Implementations§
Source§impl Clone for PolicyRelease
impl Clone for PolicyRelease
Source§fn clone(&self) -> PolicyRelease
fn clone(&self) -> PolicyRelease
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 Freeze for PolicyRelease
impl RefUnwindSafe for PolicyRelease
impl Send for PolicyRelease
impl Sync for PolicyRelease
impl Unpin for PolicyRelease
impl UnwindSafe for PolicyRelease
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