pub enum StarsTransactionPeer {
Unsupported,
AppStore,
PlayMarket,
PremiumBot,
Fragment,
StarsTransactionPeer(StarsTransactionPeer),
Ads,
Api,
}Expand description
Variants§
Unsupported
AppStore
PlayMarket
PremiumBot
Fragment
StarsTransactionPeer(StarsTransactionPeer)
Ads
Api
Trait Implementations§
Source§impl Clone for StarsTransactionPeer
impl Clone for StarsTransactionPeer
Source§fn clone(&self) -> StarsTransactionPeer
fn clone(&self) -> StarsTransactionPeer
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 StarsTransactionPeer
impl Debug for StarsTransactionPeer
Source§impl Deserializable for StarsTransactionPeer
impl Deserializable for StarsTransactionPeer
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<StarsTransactionPeer> for StarsTransactionPeer
impl From<StarsTransactionPeer> for StarsTransactionPeer
Source§fn from(x: StarsTransactionPeer) -> Self
fn from(x: StarsTransactionPeer) -> Self
Converts to this type from the input type.
Source§impl From<StarsTransactionPeerAds> for StarsTransactionPeer
impl From<StarsTransactionPeerAds> for StarsTransactionPeer
Source§fn from(_x: StarsTransactionPeerAds) -> Self
fn from(_x: StarsTransactionPeerAds) -> Self
Converts to this type from the input type.
Source§impl From<StarsTransactionPeerApi> for StarsTransactionPeer
impl From<StarsTransactionPeerApi> for StarsTransactionPeer
Source§fn from(_x: StarsTransactionPeerApi) -> Self
fn from(_x: StarsTransactionPeerApi) -> Self
Converts to this type from the input type.
Source§impl From<StarsTransactionPeerAppStore> for StarsTransactionPeer
impl From<StarsTransactionPeerAppStore> for StarsTransactionPeer
Source§fn from(_x: StarsTransactionPeerAppStore) -> Self
fn from(_x: StarsTransactionPeerAppStore) -> Self
Converts to this type from the input type.
Source§impl From<StarsTransactionPeerFragment> for StarsTransactionPeer
impl From<StarsTransactionPeerFragment> for StarsTransactionPeer
Source§fn from(_x: StarsTransactionPeerFragment) -> Self
fn from(_x: StarsTransactionPeerFragment) -> Self
Converts to this type from the input type.
Source§impl From<StarsTransactionPeerPlayMarket> for StarsTransactionPeer
impl From<StarsTransactionPeerPlayMarket> for StarsTransactionPeer
Source§fn from(_x: StarsTransactionPeerPlayMarket) -> Self
fn from(_x: StarsTransactionPeerPlayMarket) -> Self
Converts to this type from the input type.
Source§impl From<StarsTransactionPeerPremiumBot> for StarsTransactionPeer
impl From<StarsTransactionPeerPremiumBot> for StarsTransactionPeer
Source§fn from(_x: StarsTransactionPeerPremiumBot) -> Self
fn from(_x: StarsTransactionPeerPremiumBot) -> Self
Converts to this type from the input type.
Source§impl From<StarsTransactionPeerUnsupported> for StarsTransactionPeer
impl From<StarsTransactionPeerUnsupported> for StarsTransactionPeer
Source§fn from(_x: StarsTransactionPeerUnsupported) -> Self
fn from(_x: StarsTransactionPeerUnsupported) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StarsTransactionPeer
impl PartialEq for StarsTransactionPeer
Source§impl Serializable for StarsTransactionPeer
impl Serializable for StarsTransactionPeer
Source§impl TryFrom<StarsTransactionPeer> for StarsTransactionPeer
impl TryFrom<StarsTransactionPeer> for StarsTransactionPeer
Source§type Error = StarsTransactionPeer
type Error = StarsTransactionPeer
The type returned in the event of a conversion error.
impl StructuralPartialEq for StarsTransactionPeer
Auto Trait Implementations§
impl Freeze for StarsTransactionPeer
impl RefUnwindSafe for StarsTransactionPeer
impl Send for StarsTransactionPeer
impl Sync for StarsTransactionPeer
impl Unpin for StarsTransactionPeer
impl UnsafeUnpin for StarsTransactionPeer
impl UnwindSafe for StarsTransactionPeer
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