pub struct StoryFullId {
pub sender_chat_id: i64,
pub story_id: i32,
}Expand description
Contains identifier of a story along with identifier of its sender
Fields§
§sender_chat_id: i64Identifier of the chat that posted the story
story_id: i32Unique story identifier among stories of the given sender
Trait Implementations§
Source§impl Clone for StoryFullId
impl Clone for StoryFullId
Source§fn clone(&self) -> StoryFullId
fn clone(&self) -> StoryFullId
Returns a copy 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 StoryFullId
impl Debug for StoryFullId
Source§impl Default for StoryFullId
impl Default for StoryFullId
Source§fn default() -> StoryFullId
fn default() -> StoryFullId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoryFullId
impl<'de> Deserialize<'de> for StoryFullId
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 StoryFullId
impl PartialEq for StoryFullId
Source§impl Serialize for StoryFullId
impl Serialize for StoryFullId
impl StructuralPartialEq for StoryFullId
Auto Trait Implementations§
impl Freeze for StoryFullId
impl RefUnwindSafe for StoryFullId
impl Send for StoryFullId
impl Sync for StoryFullId
impl Unpin for StoryFullId
impl UnwindSafe for StoryFullId
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