pub struct ChangeSet {
pub id: String,
pub type: ChangeType,
pub summary: String,
pub description: Option<String>,
pub author: Option<String>,
pub packages: Vec<String>,
pub prerelease: bool,
}Expand description
Change set data structure.
Fields§
§id: StringThe ID of the change set.
type: ChangeTypeThe type of change.
summary: StringA summary of the change.
description: Option<String>Detailed description of the change.
The author of the change.
packages: Vec<String>The packages affected by the change.
prerelease: boolWhether the change is a prerelease.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ChangeSet
impl<'de> Deserialize<'de> for ChangeSet
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ChangeSet
impl RefUnwindSafe for ChangeSet
impl Send for ChangeSet
impl Sync for ChangeSet
impl Unpin for ChangeSet
impl UnsafeUnpin for ChangeSet
impl UnwindSafe for ChangeSet
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