pub struct Copyright<'a> {
pub name: &'a Name<'a>,
pub icon: &'a str,
pub rights_clause: &'a str,
}Expand description
Copyright data.
Fields§
§name: &'a Name<'a>Person copyrighting the website.
icon: &'a strThe copyright icon to be used.
rights_clause: &'a strWhat rights to grant/refuse.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Copyright<'a>
impl<'a> RefUnwindSafe for Copyright<'a>
impl<'a> Send for Copyright<'a>
impl<'a> Sync for Copyright<'a>
impl<'a> Unpin for Copyright<'a>
impl<'a> UnwindSafe for Copyright<'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