pub struct WebApp {
pub short_name: String,
pub title: String,
pub description: String,
pub photo: Photo,
pub animation: Option<Animation>,
}
Expand description
Describes a Web App. Use getInternalLink with internalLinkTypeWebApp to share the Web App
Fields§
§short_name: String
Web App short name
title: String
Web App title
description: String
Web App description
photo: Photo
Web App photo
animation: Option<Animation>
Web App animation; may be null
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WebApp
impl<'de> Deserialize<'de> for WebApp
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 WebApp
Auto Trait Implementations§
impl Freeze for WebApp
impl RefUnwindSafe for WebApp
impl Send for WebApp
impl Sync for WebApp
impl Unpin for WebApp
impl UnwindSafe for WebApp
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