pub struct Folder {
pub created_by: Option<IdentityRef>,
pub created_on: Option<OffsetDateTime>,
pub description: Option<String>,
pub last_changed_by: Option<IdentityRef>,
pub last_changed_date: Option<OffsetDateTime>,
pub path: Option<String>,
pub project: Option<TeamProjectReference>,
}Expand description
Represents a folder that contains build definitions.
Fields§
§created_by: Option<IdentityRef>§created_on: Option<OffsetDateTime>The date the folder was created.
description: Option<String>The description.
last_changed_by: Option<IdentityRef>§last_changed_date: Option<OffsetDateTime>The date the folder was last changed.
path: Option<String>The full path.
project: Option<TeamProjectReference>Represents a shallow reference to a TeamProject.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Folder
impl<'de> Deserialize<'de> for Folder
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 StructuralPartialEq for Folder
Auto Trait Implementations§
impl Freeze for Folder
impl RefUnwindSafe for Folder
impl Send for Folder
impl Sync for Folder
impl Unpin for Folder
impl UnwindSafe for Folder
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