pub enum BotApp {
NotModified,
BotApp(BotApp),
}Expand description
Variants§
Trait Implementations§
Source§impl Deserializable for BotApp
impl Deserializable for BotApp
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<BotAppNotModified> for BotApp
impl From<BotAppNotModified> for BotApp
Source§fn from(_x: BotAppNotModified) -> Self
fn from(_x: BotAppNotModified) -> Self
Converts to this type from the input type.
Source§impl Serializable for BotApp
impl Serializable for BotApp
impl StructuralPartialEq for BotApp
Auto Trait Implementations§
impl Freeze for BotApp
impl RefUnwindSafe for BotApp
impl Send for BotApp
impl Sync for BotApp
impl Unpin for BotApp
impl UnsafeUnpin for BotApp
impl UnwindSafe for BotApp
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