Struct webserver_base::Metadata
source · pub struct Metadata {
pub language_code: String,
pub country_code: String,
pub charset: String,
pub description: String,
pub project: String,
pub author: String,
pub twitter: Twitter,
pub home_url: String,
pub keywords: Vec<String>,
pub theme_color: String,
pub social_image: String,
}
Fields§
§language_code: String
§country_code: String
§charset: String
§description: String
§project: String
§twitter: Twitter
§home_url: String
§keywords: Vec<String>
§theme_color: String
Implementations§
source§impl Metadata
impl Metadata
pub fn new( language_code: String, country_code: String, charset: String, description: String, project: String, author: String, twitter: Twitter, home_url: String, keywords: Vec<String>, theme_color: String, social_image: String ) -> Self
pub fn new_with_defaults( project_description: &str, project_name: &str, home_url: &str, keywords: &str, theme_color: &str, social_image: &str ) -> Self
Trait Implementations§
source§impl<'de> Deserialize<'de> for Metadata
impl<'de> Deserialize<'de> for Metadata
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for Metadata
impl Send for Metadata
impl Sync for Metadata
impl Unpin for Metadata
impl UnwindSafe for Metadata
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