pub struct InputMessageReplyToStory {
pub story_sender_chat_id: i64,
pub story_id: i32,
}
Expand description
Describes a story to be replied
Fields§
§story_sender_chat_id: i64
The identifier of the sender of the story. Currently, stories can be replied only in the sender’s chat and channel stories can’t be replied
story_id: i32
The identifier of the story
Trait Implementations§
Source§impl Clone for InputMessageReplyToStory
impl Clone for InputMessageReplyToStory
Source§fn clone(&self) -> InputMessageReplyToStory
fn clone(&self) -> InputMessageReplyToStory
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 InputMessageReplyToStory
impl Debug for InputMessageReplyToStory
Source§impl Default for InputMessageReplyToStory
impl Default for InputMessageReplyToStory
Source§fn default() -> InputMessageReplyToStory
fn default() -> InputMessageReplyToStory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputMessageReplyToStory
impl<'de> Deserialize<'de> for InputMessageReplyToStory
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 InputMessageReplyToStory
impl PartialEq for InputMessageReplyToStory
Source§impl Serialize for InputMessageReplyToStory
impl Serialize for InputMessageReplyToStory
impl StructuralPartialEq for InputMessageReplyToStory
Auto Trait Implementations§
impl Freeze for InputMessageReplyToStory
impl RefUnwindSafe for InputMessageReplyToStory
impl Send for InputMessageReplyToStory
impl Sync for InputMessageReplyToStory
impl Unpin for InputMessageReplyToStory
impl UnwindSafe for InputMessageReplyToStory
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