pub struct StatusUpdateBase {
pub status_update_compact: StatusUpdateCompact,
pub html_text: Option<String>,
pub status_type: String,
pub text: String,
}Fields§
§status_update_compact: StatusUpdateCompact§html_text: Option<String>Opt In. The text content of the status update with formatting as HTML.
status_type: StringThe type associated with the status update. This represents the current state of the object this object is on.
text: StringThe text content of the status update.
Trait Implementations§
Source§impl Clone for StatusUpdateBase
impl Clone for StatusUpdateBase
Source§fn clone(&self) -> StatusUpdateBase
fn clone(&self) -> StatusUpdateBase
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StatusUpdateBase
impl Debug for StatusUpdateBase
Source§impl Default for StatusUpdateBase
impl Default for StatusUpdateBase
Source§fn default() -> StatusUpdateBase
fn default() -> StatusUpdateBase
Returns the “default value” for a type. Read more
Source§impl Deref for StatusUpdateBase
impl Deref for StatusUpdateBase
Source§impl DerefMut for StatusUpdateBase
impl DerefMut for StatusUpdateBase
Source§impl<'de> Deserialize<'de> for StatusUpdateBase
impl<'de> Deserialize<'de> for StatusUpdateBase
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 StatusUpdateBase
impl Display for StatusUpdateBase
Auto Trait Implementations§
impl Freeze for StatusUpdateBase
impl RefUnwindSafe for StatusUpdateBase
impl Send for StatusUpdateBase
impl Sync for StatusUpdateBase
impl Unpin for StatusUpdateBase
impl UnsafeUnpin for StatusUpdateBase
impl UnwindSafe for StatusUpdateBase
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