pub struct HelpLink {
pub text: String,
pub url: String,
}
Expand description
Link pointing to some help text.
Fields§
§text: String
The text to display.
url: String
The url to point to.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HelpLink
impl<'de> Deserialize<'de> for HelpLink
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for HelpLink
impl StructuralPartialEq for HelpLink
Auto Trait Implementations§
impl Freeze for HelpLink
impl RefUnwindSafe for HelpLink
impl Send for HelpLink
impl Sync for HelpLink
impl Unpin for HelpLink
impl UnwindSafe for HelpLink
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