pub struct ChangeLogEntry {
pub commit_id: Option<String>,
pub msg: String,
pub timestamp: i64,
pub affected_paths: Option<Vec<String>>,
pub author: ShortUser,
}
Expand description
Changes found from a repo
Fields§
§commit_id: Option<String>
ID of the commit
msg: String
Commit message
timestamp: i64
Timestamp of the commit
affected_paths: Option<Vec<String>>
Files changed in the commit
Author of the commit
Trait Implementations§
Source§impl Class for ChangeLogEntry
impl Class for ChangeLogEntry
Source§fn with_class() -> &'static str
fn with_class() -> &'static str
Should reply the _class provided by Jenkins for a type
Source§impl Debug for ChangeLogEntry
impl Debug for ChangeLogEntry
Source§impl<'de> Deserialize<'de> for ChangeLogEntry
impl<'de> Deserialize<'de> for ChangeLogEntry
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
impl ChangeSet for ChangeLogEntry
Auto Trait Implementations§
impl Freeze for ChangeLogEntry
impl RefUnwindSafe for ChangeLogEntry
impl Send for ChangeLogEntry
impl Sync for ChangeLogEntry
impl Unpin for ChangeLogEntry
impl UnwindSafe for ChangeLogEntry
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