pub struct UpdatePostRequest {
pub id: String,
pub is_pinned: Option<bool>,
pub message: Option<String>,
pub has_reactions: Option<bool>,
pub props: Option<String>,
}
Fields§
§id: String
ID of the post to update
is_pinned: Option<bool>
Set to true
to pin the post to the channel it is in
message: Option<String>
The message text of the post
has_reactions: Option<bool>
Set to true
if the post has reactions to it
props: Option<String>
A general JSON property bag to attach to the post
Implementations§
Source§impl UpdatePostRequest
impl UpdatePostRequest
pub fn new(id: String) -> UpdatePostRequest
Trait Implementations§
Source§impl Clone for UpdatePostRequest
impl Clone for UpdatePostRequest
Source§fn clone(&self) -> UpdatePostRequest
fn clone(&self) -> UpdatePostRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdatePostRequest
impl Debug for UpdatePostRequest
Source§impl Default for UpdatePostRequest
impl Default for UpdatePostRequest
Source§fn default() -> UpdatePostRequest
fn default() -> UpdatePostRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdatePostRequest
impl<'de> Deserialize<'de> for UpdatePostRequest
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 PartialEq for UpdatePostRequest
impl PartialEq for UpdatePostRequest
Source§impl Serialize for UpdatePostRequest
impl Serialize for UpdatePostRequest
impl StructuralPartialEq for UpdatePostRequest
Auto Trait Implementations§
impl Freeze for UpdatePostRequest
impl RefUnwindSafe for UpdatePostRequest
impl Send for UpdatePostRequest
impl Sync for UpdatePostRequest
impl Unpin for UpdatePostRequest
impl UnwindSafe for UpdatePostRequest
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