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