pub struct WebViewResultUrl {
pub fullsize: bool,
pub fullscreen: bool,
pub query_id: Option<i64>,
pub url: String,
}Expand description
Generated from:
webViewResultUrl#4d22ff98 flags:# fullsize:flags.1?true fullscreen:flags.2?true query_id:flags.0?long url:string = WebViewResultFields§
§fullsize: bool§fullscreen: bool§query_id: Option<i64>§url: StringTrait Implementations§
Source§impl Clone for WebViewResultUrl
impl Clone for WebViewResultUrl
Source§fn clone(&self) -> WebViewResultUrl
fn clone(&self) -> WebViewResultUrl
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 WebViewResultUrl
impl Debug for WebViewResultUrl
Source§impl Deserializable for WebViewResultUrl
impl Deserializable for WebViewResultUrl
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<WebViewResultUrl> for WebViewResult
impl From<WebViewResultUrl> for WebViewResult
Source§fn from(x: WebViewResultUrl) -> Self
fn from(x: WebViewResultUrl) -> Self
Converts to this type from the input type.
Source§impl Identifiable for WebViewResultUrl
impl Identifiable for WebViewResultUrl
Source§const CONSTRUCTOR_ID: u32 = 0x4d22ff98
const CONSTRUCTOR_ID: u32 = 0x4d22ff98
The constructor ID as specified in the TL schema.
Source§impl PartialEq for WebViewResultUrl
impl PartialEq for WebViewResultUrl
Source§impl Serializable for WebViewResultUrl
impl Serializable for WebViewResultUrl
Source§impl TryFrom<WebViewResult> for WebViewResultUrl
impl TryFrom<WebViewResult> for WebViewResultUrl
Source§type Error = WebViewResult
type Error = WebViewResult
The type returned in the event of a conversion error.
impl StructuralPartialEq for WebViewResultUrl
Auto Trait Implementations§
impl Freeze for WebViewResultUrl
impl RefUnwindSafe for WebViewResultUrl
impl Send for WebViewResultUrl
impl Sync for WebViewResultUrl
impl Unpin for WebViewResultUrl
impl UnsafeUnpin for WebViewResultUrl
impl UnwindSafe for WebViewResultUrl
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