pub struct EasyIndexPage<'a> {
pub form_description: &'a str,
pub form_title: &'a str,
pub peak_sustainable_traffic: Option<usize>,
pub avg_traffic: Option<usize>,
pub broke_my_site_traffic: Option<usize>,
}
Fields§
§form_description: &'a str
§form_title: &'a str
§peak_sustainable_traffic: Option<usize>
§avg_traffic: Option<usize>
§broke_my_site_traffic: Option<usize>
Trait Implementations§
source§impl<'a> Clone for EasyIndexPage<'a>
impl<'a> Clone for EasyIndexPage<'a>
source§fn clone(&self) -> EasyIndexPage<'a>
fn clone(&self) -> EasyIndexPage<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> Default for EasyIndexPage<'a>
impl<'a> Default for EasyIndexPage<'a>
source§impl<'a> TemplateOnce for EasyIndexPage<'a>
impl<'a> TemplateOnce for EasyIndexPage<'a>
source§fn render_once(self) -> RenderResult
fn render_once(self) -> RenderResult
Render the template and return the rendering result as
RenderResult
Read moreimpl<'a> Sealed for EasyIndexPage<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for EasyIndexPage<'a>
impl<'a> Send for EasyIndexPage<'a>
impl<'a> Sync for EasyIndexPage<'a>
impl<'a> Unpin for EasyIndexPage<'a>
impl<'a> UnwindSafe for EasyIndexPage<'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