pub enum TwitterMetaTag {
Title,
Card,
Site,
Creator,
Image,
Description,
}Expand description
Twittet meta tags.
Variants§
Title
Title for the Twitter card
Card
The card type, which will be one of “summary”, “summary_large_image”, “app”, or “player”.
Site
@username for the website used in the card footer.
This tag is not required, make sure the Option::None variant is handled.
Creator
@username for the content creator / author.
This tag is not required, make sure the Option::None variant is handled.
Image
Twitter Card Image
Description
Card description
Auto Trait Implementations§
impl Freeze for TwitterMetaTag
impl RefUnwindSafe for TwitterMetaTag
impl Send for TwitterMetaTag
impl Sync for TwitterMetaTag
impl Unpin for TwitterMetaTag
impl UnwindSafe for TwitterMetaTag
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