pub struct UpdateWebPage {
pub webpage: WebPage,
pub pts: i32,
pub pts_count: i32,
}Expand description
Fields§
§webpage: WebPage§pts: i32§pts_count: i32Trait Implementations§
Source§impl Clone for UpdateWebPage
impl Clone for UpdateWebPage
Source§fn clone(&self) -> UpdateWebPage
fn clone(&self) -> UpdateWebPage
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 UpdateWebPage
impl Debug for UpdateWebPage
Source§impl Deserializable for UpdateWebPage
impl Deserializable for UpdateWebPage
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<UpdateWebPage> for Update
impl From<UpdateWebPage> for Update
Source§fn from(x: UpdateWebPage) -> Self
fn from(x: UpdateWebPage) -> Self
Converts to this type from the input type.
Source§impl Identifiable for UpdateWebPage
impl Identifiable for UpdateWebPage
Source§const CONSTRUCTOR_ID: u32 = 0x7f891213
const CONSTRUCTOR_ID: u32 = 0x7f891213
The constructor ID as specified in the TL schema.
Source§impl PartialEq for UpdateWebPage
impl PartialEq for UpdateWebPage
Source§impl Serializable for UpdateWebPage
impl Serializable for UpdateWebPage
Source§impl TryFrom<Update> for UpdateWebPage
impl TryFrom<Update> for UpdateWebPage
impl StructuralPartialEq for UpdateWebPage
Auto Trait Implementations§
impl Freeze for UpdateWebPage
impl RefUnwindSafe for UpdateWebPage
impl Send for UpdateWebPage
impl Sync for UpdateWebPage
impl Unpin for UpdateWebPage
impl UnsafeUnpin for UpdateWebPage
impl UnwindSafe for UpdateWebPage
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