pub struct HeadIcon {
pub rel: String,
pub icon_type: Option<String>,
pub sizes: Option<String>,
pub href: String,
}Expand description
A <link rel="icon"> / apple-touch-icon entry for the page head.
Fields§
§rel: Stringrel value: icon, apple-touch-icon, mask-icon, …
icon_type: Option<String>Optional type (e.g. image/png).
sizes: Option<String>Optional sizes (e.g. 16x16, any).
href: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for HeadIcon
impl RefUnwindSafe for HeadIcon
impl Send for HeadIcon
impl Sync for HeadIcon
impl Unpin for HeadIcon
impl UnsafeUnpin for HeadIcon
impl UnwindSafe for HeadIcon
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