pub struct ProjectStatusResponse {
pub project_status_base: ProjectStatusBase,
pub author: Option<UserCompact>,
pub created_at: Option<DateTime<Utc>>,
pub created_by: Option<UserCompact>,
pub modified_at: Option<DateTime<Utc>>,
}
Fields§
§project_status_base: ProjectStatusBase
§created_at: Option<DateTime<Utc>>
The time at which this resource was created.
created_by: Option<UserCompact>
§modified_at: Option<DateTime<Utc>>
The time at which this project status was last modified. Note: This does not currently reflect any changes in associations such as comments that may have been added or removed from the project status.
Trait Implementations§
Source§impl Clone for ProjectStatusResponse
impl Clone for ProjectStatusResponse
Source§fn clone(&self) -> ProjectStatusResponse
fn clone(&self) -> ProjectStatusResponse
Returns a duplicate 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 ProjectStatusResponse
impl Debug for ProjectStatusResponse
Source§impl Default for ProjectStatusResponse
impl Default for ProjectStatusResponse
Source§fn default() -> ProjectStatusResponse
fn default() -> ProjectStatusResponse
Returns the “default value” for a type. Read more
Source§impl Deref for ProjectStatusResponse
impl Deref for ProjectStatusResponse
Source§impl DerefMut for ProjectStatusResponse
impl DerefMut for ProjectStatusResponse
Source§impl<'de> Deserialize<'de> for ProjectStatusResponse
impl<'de> Deserialize<'de> for ProjectStatusResponse
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 Display for ProjectStatusResponse
impl Display for ProjectStatusResponse
Auto Trait Implementations§
impl Freeze for ProjectStatusResponse
impl RefUnwindSafe for ProjectStatusResponse
impl Send for ProjectStatusResponse
impl Sync for ProjectStatusResponse
impl Unpin for ProjectStatusResponse
impl UnwindSafe for ProjectStatusResponse
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