pub struct SlackApiChatAppendStreamResponse {
pub channel: SlackChannelId,
pub ts: SlackTs,
}Fields§
§channel: SlackChannelId§ts: SlackTsImplementations§
Source§impl SlackApiChatAppendStreamResponse
impl SlackApiChatAppendStreamResponse
pub fn new(channel: SlackChannelId, ts: SlackTs) -> Self
pub fn channel(&mut self, value: SlackChannelId) -> &mut Self
pub fn with_channel(self, value: SlackChannelId) -> Self
pub fn ts(&mut self, value: SlackTs) -> &mut Self
pub fn with_ts(self, value: SlackTs) -> Self
Trait Implementations§
Source§impl Clone for SlackApiChatAppendStreamResponse
impl Clone for SlackApiChatAppendStreamResponse
Source§fn clone(&self) -> SlackApiChatAppendStreamResponse
fn clone(&self) -> SlackApiChatAppendStreamResponse
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<'de> Deserialize<'de> for SlackApiChatAppendStreamResponse
impl<'de> Deserialize<'de> for SlackApiChatAppendStreamResponse
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 From<SlackApiChatAppendStreamResponseInit> for SlackApiChatAppendStreamResponse
impl From<SlackApiChatAppendStreamResponseInit> for SlackApiChatAppendStreamResponse
Source§fn from(value: SlackApiChatAppendStreamResponseInit) -> Self
fn from(value: SlackApiChatAppendStreamResponseInit) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for SlackApiChatAppendStreamResponse
Auto Trait Implementations§
impl Freeze for SlackApiChatAppendStreamResponse
impl RefUnwindSafe for SlackApiChatAppendStreamResponse
impl Send for SlackApiChatAppendStreamResponse
impl Sync for SlackApiChatAppendStreamResponse
impl Unpin for SlackApiChatAppendStreamResponse
impl UnsafeUnpin for SlackApiChatAppendStreamResponse
impl UnwindSafe for SlackApiChatAppendStreamResponse
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