pub struct InternalLinkTypeStoryAlbum {
pub story_album_owner_username: String,
pub story_album_id: i32,
}Expand description
The link is a link to an album of stories. Call searchPublicChat with the given username, then call getStoryAlbumStories with the received chat identifier and the given story album identifier, then show the story album if received
Fields§
§story_album_owner_username: StringUsername of the owner of the story album
story_album_id: i32Story album identifier
Trait Implementations§
Source§impl Clone for InternalLinkTypeStoryAlbum
impl Clone for InternalLinkTypeStoryAlbum
Source§fn clone(&self) -> InternalLinkTypeStoryAlbum
fn clone(&self) -> InternalLinkTypeStoryAlbum
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 InternalLinkTypeStoryAlbum
impl Debug for InternalLinkTypeStoryAlbum
Source§impl Default for InternalLinkTypeStoryAlbum
impl Default for InternalLinkTypeStoryAlbum
Source§fn default() -> InternalLinkTypeStoryAlbum
fn default() -> InternalLinkTypeStoryAlbum
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InternalLinkTypeStoryAlbum
impl<'de> Deserialize<'de> for InternalLinkTypeStoryAlbum
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
impl StructuralPartialEq for InternalLinkTypeStoryAlbum
Auto Trait Implementations§
impl Freeze for InternalLinkTypeStoryAlbum
impl RefUnwindSafe for InternalLinkTypeStoryAlbum
impl Send for InternalLinkTypeStoryAlbum
impl Sync for InternalLinkTypeStoryAlbum
impl Unpin for InternalLinkTypeStoryAlbum
impl UnsafeUnpin for InternalLinkTypeStoryAlbum
impl UnwindSafe for InternalLinkTypeStoryAlbum
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