pub enum AttachMenuBots {
NotModified,
AttachMenuBots(AttachMenuBots),
}Expand description
Variants§
NotModified
AttachMenuBots(AttachMenuBots)
Trait Implementations§
Source§impl Clone for AttachMenuBots
impl Clone for AttachMenuBots
Source§fn clone(&self) -> AttachMenuBots
fn clone(&self) -> AttachMenuBots
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 AttachMenuBots
impl Debug for AttachMenuBots
Source§impl Deserializable for AttachMenuBots
impl Deserializable for AttachMenuBots
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<AttachMenuBots> for AttachMenuBots
impl From<AttachMenuBots> for AttachMenuBots
Source§fn from(x: AttachMenuBots) -> Self
fn from(x: AttachMenuBots) -> Self
Converts to this type from the input type.
Source§impl From<AttachMenuBotsNotModified> for AttachMenuBots
impl From<AttachMenuBotsNotModified> for AttachMenuBots
Source§fn from(_x: AttachMenuBotsNotModified) -> Self
fn from(_x: AttachMenuBotsNotModified) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AttachMenuBots
impl PartialEq for AttachMenuBots
Source§impl Serializable for AttachMenuBots
impl Serializable for AttachMenuBots
Source§impl TryFrom<AttachMenuBots> for AttachMenuBots
impl TryFrom<AttachMenuBots> for AttachMenuBots
Source§type Error = AttachMenuBots
type Error = AttachMenuBots
The type returned in the event of a conversion error.
impl StructuralPartialEq for AttachMenuBots
Auto Trait Implementations§
impl Freeze for AttachMenuBots
impl RefUnwindSafe for AttachMenuBots
impl Send for AttachMenuBots
impl Sync for AttachMenuBots
impl Unpin for AttachMenuBots
impl UnsafeUnpin for AttachMenuBots
impl UnwindSafe for AttachMenuBots
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