pub struct LogoLink<'a> {
pub url: &'a str,
pub logo: &'a str,
pub alt_text: &'a str,
pub text: &'a str,
}Expand description
Represents a logo.
Fields§
§url: &'a strThe link the logo will resolve to when clicked.
logo: &'a strThe url of the logo picture.
alt_text: &'a strAlternative text if the logo cannot be loaded.
text: &'a strText accompanying the logo.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for LogoLink<'a>
impl<'a> RefUnwindSafe for LogoLink<'a>
impl<'a> Send for LogoLink<'a>
impl<'a> Sync for LogoLink<'a>
impl<'a> Unpin for LogoLink<'a>
impl<'a> UnwindSafe for LogoLink<'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