pub enum AuctionBidLevel {
AuctionBidLevel(AuctionBidLevel),
}Expand description
Variants§
AuctionBidLevel(AuctionBidLevel)
Trait 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 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