pub struct ProjectStatusBase {
pub project_status_compact: ProjectStatusCompact,
pub color: Option<String>,
pub html_text: Option<String>,
pub text: Option<String>,
}
Fields§
§project_status_compact: ProjectStatusCompact
§color: Option<String>
The color associated with the status update.
html_text: Option<String>
Opt In. The text content of the status update with formatting as HTML.
text: Option<String>
The text content of the status update.
Trait Implementations§
Source§impl Clone for ProjectStatusBase
impl Clone for ProjectStatusBase
Source§fn clone(&self) -> ProjectStatusBase
fn clone(&self) -> ProjectStatusBase
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 ProjectStatusBase
impl Debug for ProjectStatusBase
Source§impl Default for ProjectStatusBase
impl Default for ProjectStatusBase
Source§fn default() -> ProjectStatusBase
fn default() -> ProjectStatusBase
Returns the “default value” for a type. Read more
Source§impl Deref for ProjectStatusBase
impl Deref for ProjectStatusBase
Source§impl DerefMut for ProjectStatusBase
impl DerefMut for ProjectStatusBase
Source§impl<'de> Deserialize<'de> for ProjectStatusBase
impl<'de> Deserialize<'de> for ProjectStatusBase
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 ProjectStatusBase
impl Display for ProjectStatusBase
Auto Trait Implementations§
impl Freeze for ProjectStatusBase
impl RefUnwindSafe for ProjectStatusBase
impl Send for ProjectStatusBase
impl Sync for ProjectStatusBase
impl Unpin for ProjectStatusBase
impl UnwindSafe for ProjectStatusBase
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