pub struct AuctionBidLevel {
pub pos: i32,
pub amount: i64,
pub date: i32,
}Expand description
Generated from:
auctionBidLevel#310240cc pos:int amount:long date:int = AuctionBidLevelFields§
§pos: i32§amount: i64§date: i32Trait Implementations§
Source§impl Clone for AuctionBidLevel
impl Clone for AuctionBidLevel
Source§fn clone(&self) -> AuctionBidLevel
fn clone(&self) -> AuctionBidLevel
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 AuctionBidLevel
impl Debug for AuctionBidLevel
Source§impl Deserializable for AuctionBidLevel
impl Deserializable for AuctionBidLevel
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<AuctionBidLevel> for AuctionBidLevel
impl From<AuctionBidLevel> for AuctionBidLevel
Source§fn from(x: AuctionBidLevel) -> Self
fn from(x: AuctionBidLevel) -> Self
Converts to this type from the input type.
Source§impl Identifiable for AuctionBidLevel
impl Identifiable for AuctionBidLevel
Source§const CONSTRUCTOR_ID: u32 = 0x310240cc
const CONSTRUCTOR_ID: u32 = 0x310240cc
The constructor ID as specified in the TL schema.
Source§impl PartialEq for AuctionBidLevel
impl PartialEq for AuctionBidLevel
Source§impl Serializable for AuctionBidLevel
impl Serializable for AuctionBidLevel
Source§impl TryFrom<AuctionBidLevel> for AuctionBidLevel
impl TryFrom<AuctionBidLevel> for AuctionBidLevel
Source§type Error = AuctionBidLevel
type Error = AuctionBidLevel
The type returned in the event of a conversion error.
impl StructuralPartialEq for AuctionBidLevel
Auto Trait Implementations§
impl Freeze for AuctionBidLevel
impl RefUnwindSafe for AuctionBidLevel
impl Send for AuctionBidLevel
impl Sync for AuctionBidLevel
impl Unpin for AuctionBidLevel
impl UnsafeUnpin for AuctionBidLevel
impl UnwindSafe for AuctionBidLevel
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