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