pub struct CommonChangeSetList {
pub kind: Option<String>,
pub items: Vec<CommonChangeSet>,
pub class: Option<String>,
/* private fields */
}
Expand description
A Jenkins ChangeSetList
Fields§
§kind: Option<String>
Origin of the changes
items: Vec<CommonChangeSet>
Changes in this list
class: Option<String>
_class provided by Jenkins
Implementations§
Source§impl CommonChangeSetList
impl CommonChangeSetList
Sourcepub fn as_variant<T>(&self) -> Result<T, Error>
pub fn as_variant<T>(&self) -> Result<T, Error>
Read the object as one of it’s specialization implementing $trait
Trait Implementations§
Source§impl Clone for CommonChangeSetList
impl Clone for CommonChangeSetList
Source§fn clone(&self) -> CommonChangeSetList
fn clone(&self) -> CommonChangeSetList
Returns a copy 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 moreSource§impl Debug for CommonChangeSetList
impl Debug for CommonChangeSetList
Source§impl<'de> Deserialize<'de> for CommonChangeSetList
impl<'de> Deserialize<'de> for CommonChangeSetList
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
Source§impl Serialize for CommonChangeSetList
impl Serialize for CommonChangeSetList
impl ChangeSetList for CommonChangeSetList
Auto Trait Implementations§
impl Freeze for CommonChangeSetList
impl RefUnwindSafe for CommonChangeSetList
impl Send for CommonChangeSetList
impl Sync for CommonChangeSetList
impl Unpin for CommonChangeSetList
impl UnwindSafe for CommonChangeSetList
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