pub struct ListView {
pub description: Option<String>,
pub name: String,
pub url: String,
pub jobs: Vec<ShortJob>,
pub property: Vec<CommonProperty>,
}
Expand description
A Jenkins View
with a list of ShortJob
Fields§
§description: Option<String>
Description of the view
name: String
Name of the view
url: String
URL for the view
jobs: Vec<ShortJob>
List of jobs in the view
property: Vec<CommonProperty>
Properties of the view
Implementations§
Trait Implementations§
Source§impl Class for ListView
impl Class for ListView
Source§fn with_class() -> &'static str
fn with_class() -> &'static str
Should reply the _class provided by Jenkins for a type
Source§impl<'de> Deserialize<'de> for ListView
impl<'de> Deserialize<'de> for ListView
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 ListView
impl RefUnwindSafe for ListView
impl Send for ListView
impl Sync for ListView
impl Unpin for ListView
impl UnwindSafe for ListView
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