pub struct Logo<'a> {
pub src: &'a str,
pub href: Option<&'a str>,
}Expand description
Information regarding the logo. (This is very simple).
Fields§
§src: &'a strThe url to the actual image.
href: Option<&'a str>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Logo<'a>
impl<'a> RefUnwindSafe for Logo<'a>
impl<'a> Send for Logo<'a>
impl<'a> Sync for Logo<'a>
impl<'a> Unpin for Logo<'a>
impl<'a> UnwindSafe for Logo<'a>
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