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