pub struct IconBean {
pub url16x16: Option<String>,
pub title: Option<String>,
pub link: Option<String>,
}
Expand description
IconBean : An icon.
Fields§
§url16x16: Option<String>
The URL of a 16x16 pixel icon.
title: Option<String>
The title of the icon, for use as a tooltip on the icon.
link: Option<String>
The URL of the tooltip, used only for a status icon.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IconBean
impl<'de> Deserialize<'de> for IconBean
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 StructuralPartialEq for IconBean
Auto Trait Implementations§
impl Freeze for IconBean
impl RefUnwindSafe for IconBean
impl Send for IconBean
impl Sync for IconBean
impl Unpin for IconBean
impl UnwindSafe for IconBean
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