#[non_exhaustive]pub struct InAppLink {
pub url: String,
pub label: String,
pub icon_url: String,
/* private fields */
}Expand description
In app linking start
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.url: StringURL to redirect to.
label: StringLabel for the link.
icon_url: StringIcon url for the link.
Implementations§
Trait Implementations§
impl StructuralPartialEq for InAppLink
Auto Trait Implementations§
impl Freeze for InAppLink
impl RefUnwindSafe for InAppLink
impl Send for InAppLink
impl Sync for InAppLink
impl Unpin for InAppLink
impl UnsafeUnpin for InAppLink
impl UnwindSafe for InAppLink
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